﻿
body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    font-family: 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    margin: 0;
}

.form-container {
    border-radius: 12px;
    background: white;
    max-width: 440px;
    margin: auto;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.form-header {
    color: white;
    text-align: center;
    border-radius: 12px 12px 0 0;
    font-size: 1.1rem;
}

.form-label {
    font-weight: 500;
    font-size: 12px;
    color: #4a5568;
    margin-bottom: 2px;
    cursor: pointer;
    display: block;
}

.form-control, .form-select, .btn {
    border-radius: 6px;
}

    .form-control:focus, .form-select:focus, .btn:focus {
        box-shadow: none !important;
        outline: none !important;
    }

    .form-control:focus, .form-select:focus {
        border-color: #3182ce !important;
        background-color: #fcfdfe;
    }

.btn-navy {
    background: #1e2e51;
    color: white;
    font-weight: 600;
    border: none;
    transition: 0.2s;
}

    .btn-navy:hover {
        background: #2d3748;
        color: white;
    }

.btn-cancel {
    background-color: #dc3545;
    color: white;
    border: none;
    font-weight: 600;
}

    .btn-cancel:hover {
        background-color: #bb2d3b;
        color: white;
    }

.btn-otp {
    background-color: #1e2e51;
    color: white;
    border: none;
    font-size: 12px;
}

    .btn-otp:hover {
        color: white;
    }

    .btn-otp:disabled {
        background-color: #a0aec0;
        cursor: not-allowed;
    }

.text-instruction {
    font-size: 10px;
    color: #718096;
    line-height: 1;
    display: block;
    margin-top: 1px;
}

.email-exists-msg {
    font-size: 11px;
    color: #e53e3e;
    display: none;
    margin-top: 2px;
    font-weight: 600;
}

hr {
    margin: 10px 0;
    opacity: 0.1;
}

.login-link {
    font-size: 13px;
    text-decoration: none;
    color: #1e2e51;
    font-weight: 600;
}

    .login-link:hover {
        text-decoration: underline;
    }
