body, html {
    height: 100%;
    margin: 0;
    background-color: #F68E1E; /* Solid background color */
    display: flex;
    align-items: flex-start;
    justify-content: center;
    font-size: 16px;
}


.login-container {
    background-color: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.2);
    max-width: 400px;
    width: 100%;
    text-align: center;
    position: relative;
    margin-top: 50px;
}

    .login-container h2 {
        margin-bottom: 30px;
        font-size: 1.8rem;
        color: #AC0620; /* Text color */
        font-weight: bold;
    }

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 15px;
    font-size: 1rem;
}

.btn-primary {
    background-color: #AC0620; /* Primary button color */
    border-color: #AC0620;
    border-radius: 10px;
    padding: 10px 20px;
    font-size: 1.1rem;
    width: 100%;
    transition: background-color 0.3s ease;
}

    .btn-primary:hover {
        background-color: #F68E1E; /* Hover color */
        border-color: #F68E1E;
    }

#Login-PersonalCode {
    text-align: center;
    font-size: 1.2rem; /* Optional: increase font size for better visibility */
}

.logo {
    margin-bottom: 20px;
}

    .logo img {
        height: 150px;
    }

.footer-text {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #777;
}


.logo-pulsing {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}
