﻿/* General Reset */
* {
    box-sizing: border-box;
}

.header-logos {
    text-align: center;
    padding: 20px 0;
}
    .header-logos img {
        width: 800px; /* ✅ Adjust this as needed */
        max-width: 90%; /* ✅ Prevent overflow on small screens */
        height: auto;
        display: inline-block;
    }


/* Logo styling */
.logo {
    max-width: 140px;
    height: auto;
    margin: 5px;
}

/* Login Box */
.login-box {
    width: 100%;
    max-width: 350px;
    margin: 20px auto;
    padding: 25px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    border-radius: 8px;
    text-align: center;
}

    /* Input fields */
    .login-box input {
        width: 100%;
        margin: 10px 0;
        padding: 10px;
        font-size: 16px;
    }

    /* Button */
    .login-box button {
        width: 100%;
        padding: 10px;
        background-color: #1f5629;
        color: white;
        font-size: 16px;
        border: none;
        cursor: pointer;
        border-radius: 4px;
    }


.footer-copy {
    text-align: center;
    margin-top: 40px;
    font-size: 14px;
    color: #555;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-logos {
        flex-direction: column;
        align-items: center;
    }

    .logo {
        max-width: 100px;
    }

    .login-box {
        margin-top: 10px;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .logo {
        max-width: 80px;
    }
}
