body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9; /* Light background for the page */
}

.nav-unique {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #ffffff; /* Background color of the nav */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
}

.nav-links li {
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    padding: 0.5rem 1rem;
    transition: background 0.3s;
}

.nav-links a:hover {
    background-color: #e2e2e2; /* Highlight on hover */
}

.dropdown-menu {
    display: none; /* Hide dropdowns initially */
    position: absolute;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    list-style: none;
    padding: 0;
}

.dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh; /* Center the form vertically */
    padding: 0 1rem; /* Add horizontal padding */
}

.form-box {
    background-color: #ffffff; /* White background for the form */
    padding: 2.5rem; /* Increased padding for larger form size */
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    width: 100%; /* Full width for responsiveness */
    max-width: 500px; /* Maximum width for larger screens */
    box-sizing: border-box; /* Include padding and border in width/height */
}

h2 {
    margin-bottom: 2rem; /* Increased margin for the title */
    font-size: 2rem; /* Larger font size for the title */
}

.form-field {
    margin-bottom: 1.5rem; /* Space between fields */
}

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem; /* Larger font size for labels */
}

.form-field input {
    width: 100%;
    padding: 1rem; /* Increased padding for inputs */
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem; /* Larger font size for input */
    box-sizing: border-box; /* Include padding and border in width */
}

.submit-button {
    background-color: #4caf50; /* Green background for the button */
    color: white;
    border: none;
    padding: 1rem; /* Comfortable button padding */
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 1.2rem; /* Larger font size for button */
}

.submit-button:hover {
    background-color: #45a049; /* Darker green on hover */
}

.forgot-password {
    display: block;
    margin-top: 0.5rem;
    text-align: right;
    text-decoration: none;
    color: #4caf50; /* Green color for forgot password link */
    font-size: 1rem; /* Larger font size for forgot password link */
}

p {
    text-align: center;
    margin-top: 1rem;
    font-size: 1rem; /* Larger font size for the paragraph */
}

/* Responsive Design */
@media (max-width: 480px) {
    .form-box {
        padding: 2rem; /* Adjust padding for smaller screens */
        max-width: 100%; /* Allow more width on small screens */
    }

    h2 {
        font-size: 1.5rem; /* Adjust title font size */
    }

    .form-field label {
        font-size: 1rem; /* Adjust label font size */
    }

    .form-field input {
        padding: 0.75rem; /* Adjust input padding */
        font-size: 1rem; /* Adjust input font size */
    }

    .submit-button {
        padding: 1rem; /* Adjust button padding */
        font-size: 1rem; /* Adjust button font size */
    }

    .forgot-password, p {
        font-size: 0.9rem; /* Adjust font size for smaller text */
    }
}
