/* Dedicated Login Page Styles */

/* Reset & Base */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    /* Default sans for body, specific headers use Serif */
    margin: 0;
    height: 100vh;
    overflow: hidden;
    /* Prevent scrollbars */
}

/* Container */
.login-container {
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Requested Background Color */
    background-color: #FFDBBB;

    position: fixed;
    top: 0;
    left: 0;
}

/* Card */
.login-form-card {
    background: #1E3A8A;
    color: #ffffff;
    padding: 45px 55px;
    border-radius: 8px;
    /* Slightly sharper corners like the image */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 380px;
    text-align: center;
}

/* Header */
.login-header-text {
    margin-bottom: 35px;
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 15px;
}

.login-header-text h2 {
    font-family: 'Times New Roman', Times, serif;
    /* Times New Roman as requested */
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Form Groups */
.form-group {
    margin-bottom: 25px;
    text-align: left;
    position: relative;
}

/* Inputs - Underlined Style */
.form-group input {
    width: 100%;
    padding: 12px 5px;
    border: none;
    border-bottom: 1px solid #4a6fa5;
    border-radius: 0;
    font-size: 0.95rem;
    color: #ffffff;
    background: transparent;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-bottom: 1px solid #93c5fd;
    /* Light blue highlight */
}

.form-group input::placeholder {
    color: #93c5fd;
    font-size: 0.9rem;
    font-weight: 400;
}

/* Button - Pill Shape */
.btn-login {
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    /* Full pill shape */
    background: #ffffff;
    color: #1E3A8A;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    margin-top: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-login:hover {
    background: #f1f5f9;
    transform: translateY(-2px);
}

/* Links */
.forgot-password {
    text-align: left;
    margin-top: -10px;
}

.forgot-password a {
    color: #93c5fd;
    font-size: 0.8rem;
    text-decoration: none;
    font-weight: 500;
}

.login-footer-text {
    margin-top: 35px;
    font-size: 0.85rem;
    color: #bfdbfe;
}

.login-footer-text a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

/* Alerts */
.alert {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.alert-error {
    background-color: #fee2e2;
    color: #dc2626;
}