/*
 * Flamenet ICQ Login — Styles
 * Classic ICQ 99b/2000 aesthetic: green header, white form body
 */

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

.icq-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 (classic ICQ green gradient)
   ------------------------------------------------------- */

.icq-header {
    background: linear-gradient(to bottom, #66CC33 0%, #339900 60%, #226600 100%);
    padding: 8px 10px 6px;
    border-bottom: 2px solid #1a5200;
}

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

.icq-logo-text {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
    letter-spacing: 2px;
    font-style: italic;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}

.icq-logo-tag {
    font-size: 9px;
    color: #ccffaa;
    font-weight: normal;
    letter-spacing: 0.05em;
    margin-top: 1px;
}

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

.icq-body {
    padding: 10px 10px 6px;
    background: #f0fce8;
}

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

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

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

.icq-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;
}

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

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

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

.icq-msg-ok {
    color: #226600;
    margin-bottom: 4px;
}

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

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

.icq-buttons {
    text-align: center;
    margin-bottom: 6px;
    margin-top: 8px;
}

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

.icq-btn-signin:hover {
    background: linear-gradient(to bottom, #88DD55 0%, #44BB11 100%);
}

.icq-btn-signin:active {
    background: linear-gradient(to bottom, #226600 0%, #339900 100%);
    box-shadow: none;
}
