﻿body {
    background-color: #1a2a4a;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.login-wrapper {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.login-header {
    text-align: center;
    color: #ffffff;
    margin-bottom: 20px;
}

    .login-header h2 {
        font-size: 26px;
        font-weight: 700;
        letter-spacing: 2px;
        margin-bottom: 4px;
    }

    .login-header p {
        font-size: 13px;
        color: #a0b4d0;
        letter-spacing: 1px;
    }

.login-box {
    background: #ffffff;
    border-radius: 6px;
    padding: 35px 40px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.login-title {
    text-align: center;
    color: #1a2a4a;
    font-weight: 700;
    margin-bottom: 25px;
    border-bottom: 2px solid #e8edf5;
    padding-bottom: 15px;
}

.form-control {
    border-radius: 4px;
    border: 1px solid #c8d4e8;
    height: 42px;
}

    .form-control:focus {
        border-color: #1a2a4a;
        box-shadow: 0 0 0 2px rgba(26,42,74,0.15);
    }

.btn-login {
    background-color: #1a2a4a;
    border-color: #1a2a4a;
    height: 44px;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-top: 8px;
    transition: background-color 0.2s;
}

    .btn-login:hover {
        background-color: #243d6e;
        border-color: #243d6e;
    }

.login-footer {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
}

    .login-footer a {
        color: #1a2a4a;
    }

        .login-footer a:hover {
            text-decoration: underline;
        }

.login-copy {
    color: #6a84a8;
    font-size: 11px;
    margin-top: 20px;
    text-align: center;
}

.reset-success {
    text-align: center;
    padding: 10px 0 20px;
}

.reset-icon {
    width: 60px;
    height: 60px;
    background-color: #2ecc71;
    border-radius: 50%;
    color: white;
    font-size: 30px;
    line-height: 60px;
    margin: 0 auto 15px;
}

.reset-success h4 {
    color: #1a2a4a;
    font-weight: 700;
    margin-bottom: 12px;
}

.reset-success p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}
