
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.header {
    background-color: #1a3e5c;
    color: white;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header img {
    margin-right: 20px;
}



.header nav a {
    color: white;
    text-decoration: none;
    margin-left: auto;
    transition: font-weight 0.3s, transform 0.3s;
}


.header-text {
    margin-right: auto;
    display: flex;
    flex-direction: column; /* Ensures text stacks vertically */
}

.header h1 {
    margin: 2px;
    font-size: 18px;
}

.header h2 {
    margin: 0;
    font-size: 16px;
}

.light-font {
    font-weight: 300;
    font-size: 14px;
}


.main-content {
    display: flex;
    height: 100%;
    background-color: #d3d3d3;
    padding: 50px;
    text-align: center;
    justify-content: center;
    align-items: center;
    
}


.main-content input[type="text"] {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.main-content input[type="password"] {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    margin-bottom: 20px;
    text-align: center;
}

.hidden {
    display: none;
}

.footer {
    background-color: #1a3e5c;
    color: white;
    padding: 20px;
    text-align: left;
}
.footer .column {
    display: inline-block;
    vertical-align: top;
    width: 30%;
    padding: 10px;
}
.footer .column h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.footer .column p, .footer .column a {
    font-size: 14px;
    color: white;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}
.footer .column a:hover {
    color: #ffc107;
    /* Hover effect */
    padding-left: 10px;
    /* Move to the left */
}

.box {
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    background-color: #1a3e5c;
    margin-bottom: 10px;
    width: 200px; /* Set a fixed width for all boxes */
    text-align: center; /* Center the text inside the box */
}



.box:hover {
    background-color: #148206; /* Change background color on hover */
    cursor: pointer; /* Change cursor to pointer on hover */
}








.login-container {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 0 10px rgb(20, 8, 95);

    /* Animation */
    position: relative;
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInMove 0.8s ease-out forwards;
}

/* Keyframes for animation */
@keyframes fadeInMove {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}



/* Form label styling */
.login-form-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 5px;
    display: block;
    text-align: center;
}

/* Input field styling */
.login-input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    margin-bottom: 15px;
    background-color: #fafafa;
    transition: border-color 0.3s ease;
}

/* Input focus styling */
.login-input:focus {
    border-color: #1f3370;
    outline: none;
}

/* Button styling */
.login-button {
    align-items: center;
    justify-content: center;
    background-color: #1a3e5c;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    width: 80%;
    transition: background-color 0.3s ease;
}

/* Button icon styling */
.login-button i {
    margin-right: 10px;
}

/* Button hover effect */
.login-button:hover {
    background-color: #2e59d9;
}

/* Button focus outline removal */
.login-button:focus {
    outline: none;
}


@media (max-width: 768px) {
    .main-content input[type="text"] {
        width: 100%;
    }
    .footer .column {
        display: block;
        width: 100%;
    }


}