/* Global Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Full screen height */
    box-sizing: border-box;
}

/* Container Styles */
.auth-container {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px; /* Increased width for more space */
    text-align: center;
    min-height: 400px; /* Ensures the container has a minimum height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Ensures content is aligned to the top */
}

/* Title Style */
.auth-container h1 {
    margin-bottom: 1rem;
    color: #4CAF50;
    font-size: 1.5em;
}

/* Form Styles */
.auth-container form {
    display: flex;
    flex-direction: column;
    gap: 0.2rem; /* Increased gap between fields */
    width: 100%;
    margin-bottom: 20px; /* Adds space below form */
}

/* Form Field Styles */
.form-field {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem; /* Added gap between label and input */
}

.form-field label {
    font-size: 1rem;
    color: #555;
}

.form-field input {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 1em;
    width: 100%;
}

/* Button Styles */
.auth-container button {
    padding: 8px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.auth-container button:hover {
    background-color: #45a049;
}

/* Link Styles */
.auth-container p {
    font-size: 1em;
    margin-top: 1rem;
}

.auth-container a {
    color: #4CAF50;
    text-decoration: none;
}

.auth-container a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 600px) {
    .auth-container h1 {
        font-size: 1.5em;
    }
    .auth-container form {
        padding: 15px;
    }
    .auth-container button {
        font-size: 1em;
    }
}
.logo-container {
    display: flex;
    align-items: center; /* Aligns logos vertically */
    justify-content: center; /* Centers logos horizontally */
    gap: 10px; /* Adds spacing between logos */
    padding: 10px;
}

.logo {
    width: 150px; /* Ensures both logos have the same width */
    height: 100px; /* Ensures both logos have the same height */
    object-fit: contain; /* Maintains aspect ratio without cropping */
}

@media (max-width: 600px) {
    .logo-container {
        flex-wrap: wrap; /* Allows wrapping if needed on smaller screens */
    }

    .logo {
        width: 120px; /* Adjust width for smaller screens */
        height: 80px;
    }
}