/*
 * Flamenet AIM Login — Styles
 * Classic AIM 5.x aesthetic: yellow header, blue accents, white form body
 */

/* -------------------------------------------------------
   Container
   ------------------------------------------------------- */

.aim-signin-box {

    border: 1px solid #999;
    background: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.25);
    box-sizing: border-box;

}

/* -------------------------------------------------------
   Header bar (yellow gradient → AIM logo)
   ------------------------------------------------------- */

.aim-header {
    background: linear-gradient(to bottom, #FFFF00 0%, #FFD700 60%, #FFA500 100%);
    padding: 8px 10px 6px;
    border-bottom: 2px solid #CC8800;
}

.aim-logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.aim-logo-aim {
    font-size: 22px;
    font-weight: 900;
    color: #003399;
    letter-spacing: -1px;
    font-style: italic;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.15);
}

.aim-logo-tag {
    font-size: 9px;
    color: #444;
    font-weight: normal;
    letter-spacing: 0.02em;
    margin-top: 1px;
}

/* -------------------------------------------------------
   Form body
   ------------------------------------------------------- */

.aim-body {
    padding: 10px 10px 6px;
    background: #EEF2FF;
}

.aim-form {
    margin: 0;
    padding: 0;
}

.aim-field-row {
    margin-bottom: 6px;
}

.aim-label {
    display: block;
    font-size: 11px;
    color: #333;
    margin-bottom: 2px;
    font-weight: bold;
}

.aim-input {
    display: block;
    width: 100%;
    box-sizing: border-box;
    height: 20px;
    padding: 1px 4px;
    border: 1px solid #888;
    border-radius: 0;
    background: #fff;
    font-size: 12px;
    font-family: Arial, Helvetica, sans-serif;
    color: #000;
    outline: none;
}

.aim-input:focus {
    border-color: #003399;
    box-shadow: 0 0 0 1px #003399 inset;
}

/* -------------------------------------------------------
   Status message
   ------------------------------------------------------- */

.aim-msg {
    font-size: 11px;
    min-height: 0;
    margin-bottom: 0;
}

.aim-msg-ok {
    color: #006600;
    margin-bottom: 4px;
}

.aim-msg-err {
    color: #CC0000;
    margin-bottom: 4px;
}

/* -------------------------------------------------------
   Remember checkbox row
   ------------------------------------------------------- */

.aim-remember-row {
    margin: 4px 0 8px;
}

.aim-check-label {
    font-size: 11px;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}

.aim-checkbox {
    margin: 0;
    cursor: pointer;
}

/* -------------------------------------------------------
   Sign In button
   ------------------------------------------------------- */

.aim-buttons {
    text-align: center;
    margin-bottom: 6px;
}

.aim-btn-signin {
    background: linear-gradient(to bottom, #6699FF 0%, #003399 100%);
    color: #fff;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: bold;
    border: 1px solid #001f7a;
    padding: 3px 18px;
    cursor: pointer;
    letter-spacing: 0.03em;
    box-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.aim-btn-signin:hover {
    background: linear-gradient(to bottom, #88AAFF 0%, #0044CC 100%);
}

.aim-btn-signin:active {
    background: linear-gradient(to bottom, #003399 0%, #0044CC 100%);
    box-shadow: none;
}

/* -------------------------------------------------------
   Footer links
   ------------------------------------------------------- */

.aim-footer {
    background: #D8DFF5;
    border-top: 1px solid #b0badd;
    padding: 5px 8px;
    text-align: center;
    font-size: 10px;
    color: #555;
}

.aim-footer-link {
    color: #003399;
    text-decoration: none;
}

.aim-footer-link:hover {
    text-decoration: underline;
    color: #CC0000;
}
