﻿.admin-login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f4f6f9;
}

.admin-login-box {
    padding: 30px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 400px;
    margin-top: 20px;
    margin-bottom: 50px;
}

.form-header {
    text-align: center;
    margin-bottom: 20px;
}

    .form-header h1 {
        margin: 0;
        font-size: 28px;
        font-weight: bold;
        color: #a61118; /* Primary heading color */
    }

    .form-header p {
        font-size: 14px;
        color: #113266; /* Secondary text color */
        margin: 10px 0 20px 0;
    }

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        font-weight: bold;
        color: #113266; /* Label color */
    }

    .form-group input {
        padding: 10px;
        border: 1px solid #c79931; /* Input border color */
        border-radius: 5px;
        font-size: 14px;
        color: #113266; /* Input text color */
        background-color: #fdfcf3; /* Light input background */
    }

        .form-group input:focus {
            border-color: #a61118; /* Highlight input border on focus */
            outline: none;
            box-shadow: 0 0 5px rgba(166, 17, 24, 0.5); /* Subtle focus shadow effect */
        }

    .form-group .btn-admin {
        width: 100%;
        padding: 12px;
        font-size: 16px;
        font-weight: bold;
        color: #ffffff; /* Button text color */
        background-color: #113266; /* Primary button color */
        border: none;
        border-radius: 5px;
        cursor: pointer;
        transition: all 0.3s ease-in-out;
    }

.btn-admin:hover {
    background-color: #a61118; /* Button hover color */
    transform: scale(1.03); /* Slightly enlarge the button on hover */
}

.user-login-link {
    display: block;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
    color: #113266; /* Link text color */
}

    .user-login-link a {
        color: #c79931; /* Link color */
        text-decoration: none;
        font-weight: bold;
    }

        .user-login-link a:hover {
            text-decoration: underline;
            color: #a61118; /* Hover link color */
        }


