﻿/* Background */
body {
    background: #003366; 
    margin: 0;
}

.main-container {
    background: #003366;
    color: #fff;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    height: 100%;
}


/* ligin-Container */
.login-container {
    background: #fbf5f5; 
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    width: 90%;
    max-width: 700px;
    text-align: center;
}

/* Header */
.header-name {
    font-size: 4rem;
    font-weight: bold;
    color: #003366; 
    margin-bottom: 6rem;
}

.page-header img {
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Buttons */
.login-button {
    background: #ff7f11; 
    border: none;
    padding: 1rem;
    border-radius: 5px;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 80%;
    margin-bottom: 2rem;
}

    .login-button:hover {
        background: #FFD580; /* Lighter blue on hover */
        color: #ff7f11;
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0, 51, 102, 0.5);
    }

.back-button {
    background: #fff;
    border: 2px solid #003366;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-size: 1rem;
    color: #003366;
    cursor: pointer;
    margin-bottom: 2rem;
    transition: all 0.4s ease;
}

    .back-button:hover {
        background: #00509d;
        border-color: #00509d;
    }

/* Responsive design */
.row {
    gap: 1.5rem;
}
