.login-full-center {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8faf9 0%, #e8f5e9 100%);
    padding: 20px;
    min-height: calc(100vh - 392px);
}


.login-card {
    width: 100%;
    max-width: 460px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 6px 28px rgba(0,0,0,0.10);
    overflow: hidden;
}


.login-header {
    padding: 40px 32px 20px;
    text-align: center;
    background: #e8f5e9;
    margin-bottom: 35px;
}

.login-icon {
    font-size: 3.4rem;
    color: #1b5e20;
    margin-bottom: 10px;
}

.login-title {
    margin: 0;
    font-size: 1.75rem;
    color: #1b5e20;
    font-weight: 600;
}

.login-form {
    padding: 0 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.login-field {
    text-align: left;
}

.login-field--captcha {
    display: flex;
    justify-content: center;
}

.login-label {
    display: block;
    margin: 7px 0 7px 0;
    font-weight: 500;
    color: #2c3e50;
}

.login-input-group {
    position: relative;
}

.login-input {
    width: 100%;
    padding: 14px 14px 14px 46px;
    border: 1px solid #d1d9d4;
    border-radius: 8px;
    font-size: 1.02rem;
}

.login-input:focus {
    border-color: #1b5e20;
    box-shadow: 0 0 0 3px rgba(27,94,32,0.15);
    outline: none;
}

.login-input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #718096;
    font-size: 1.15rem;
}

.login-submit {
    margin-top: 10px;
    padding: 14px 24px;
    background: #1b5e20;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: background 0.2s;
}

.login-submit:hover {
    background: #0f3d12;
}

.login-error, .logout-message {
    color: #c53030;
    font-size: 0.92rem;
    text-align: center;
    min-height: 1.3em;
}

.logout-message {
    text-align: center;
    color: #31731c;
    font-size: 1.5rem;
}

.login-footer {
    padding: 0 32px 32px;
    text-align: center;
    font-size: 0.92rem;
}
