﻿
body {
    background-color: #1A2853;
    font-family: 'Arial', sans-serif;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-box {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    animation: fadeIn 1s ease-in-out;
    max-width: 400px;
    text-align: center;
}

    .login-box h2 {
        color: #E6A641;
        margin-bottom: 20px;
    }

    .login-box p {
        color: #E6A641;
        font-size: 16px;
        margin-bottom: 20px;
    }

.form-control {
    background-color: #505F72;
    color: white;
    border: none;
    border-radius: 5px;
    height: 50px;
    padding: 10px;
}

    .form-control:focus {
        box-shadow: none;
        background-color: #505F72;
        outline: none;
    }

.btn-custom {
    background-color: #E6A641;
    border: none;
    color: #1A2853;
    width: 100%;
    padding: 15px;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

    .btn-custom:hover {
        background-color: #D29337;
    }

.form-text {
    color: #E6A641;
}

.logo {
    width: 100px;
    margin-bottom: 20px;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.input-group-text {
    background-color: #505F72;
    color: white;
    border: none;
}
