﻿body {
    font-family: Arial, sans-serif;
    background-color: #C8D9E6;
}

img {
    width: 170px;
    height: 170px;
}

.login-logo {
    display: block;
    margin: 0 auto -85px;
    position: relative;
    z-index: 10;
    width: 170px;
    height: 170px;
    filter: drop-shadow(0 4px 6px #FBF9E4);
}

/* login container */
.login-container {
    max-width: 400px;
    margin: 30px auto;
    margin-top: 110px;
    padding: 10px 30px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(70, 39, 32, 0.2);
}

    .login-container h3 {
        text-align: center;
        color: #122C4F;
        margin-top: 5px;
        margin-bottom: 20px;
        font-size: 23px;
        padding-top: 5px;
    }

    .login-container p {
        margin: 15px 0;
    }

    /* text box */
    .aspNet-TextBox,
    .login-container input[type="text"],
    .login-container input[type="password"] {
        width: 100%;
        padding: 10px;
        font-size: 16px;
        border: 1px solid #ccc;
        border-radius: 6px;
        background-color: #fffef8; /* match sign-up */
        box-sizing: border-box;
        margin-bottom: 15px;
        display: block;
    }

/* ================= ADMIN NOTICE ================= */
.admin-notice {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #d35400;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 30px;
    padding: 12px;
    background-color: #FFF3E0;
    border-radius: 12px;
    border-left: 6px solid #d35400;
}

/* ================= LOGIN BUTTON ================= */
.aspNet-Button {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #A3B9D5, #122C4F);
    border: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 15px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

    .aspNet-Button:hover {
        transform: translateY(-2px);
        box-shadow: 0 12px 24px rgba(18,44,79,0.35);
    }

/* ================= VALIDATION ================= */
span[style*="color:Red"] {
    display: block;
    font-size: 12px;
    margin-bottom: 6px;
    font-weight: 500;
}

/* ================= USER LOGIN PROMPT ================= */
.user-login-prompt {
    text-align: center;
    margin-top: 25px;
    font-size: 14px;
    color: #462720;
    border-top: 1px solid #e0e0e0;
}

    .user-login-prompt p {
        color: #555;
        font-size: 14px;
    }

    .user-login-prompt i {
        color: #122C4F;
        margin-right: 6px;
    }

    .user-login-prompt a {
        color: #122C4F; /* midnight blue */
        font-weight: bold;
        text-decoration: none;
        margin-left: 5px;
        transition: color 0.3s ease;
    }

        .user-login-prompt a:hover {
            color: #C8D9E6; /* sky blue */
            text-decoration: underline;
        }

/* ================= MOBILE ================= */
@media (max-width: 480px) {
    .login-container {
        padding: 35px 25px;
        margin-top: 100px;
    }

    h3 {
        font-size: 26px;
    }

    .login-logo {
        width: 100px;
    }
}