/* styles.css */
body {
    font-family: Arial, sans-serif;
    background-color: #e0f7fa; /* Light blue background */
    margin: 0;
    padding: 0;
}

.container {
    max-width: 320px; /* Limit the width of the form */
    margin: 80px auto;
    padding: 20px;
    background-color: #fff;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    text-align: center;
}

h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #007bb5; /* Darker blue for headers */
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #007bb5;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

button {
    width: 100%;
    padding: 10px;
    background-color: #007bb5; /* Blue color for buttons */
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #005f8b; /* Darker blue on hover */
}

p {
    margin-top: 15px;
    font-size: 14px;
    color: #333;
}

a {
    color: #007bb5;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}


/* The dropdown container should be relatively positioned */
.dropdown {
    position: relative;
    display: inline-block; /* or block, depending on your layout */
}

/* Hide the dropdown content by default */
.dropdown-content {
    display: none;
    position: absolute; 
    background-color: #fff;
    min-width: 160px; /* adjust as needed */
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
    z-index: 999; /* ensure it appears on top */
}

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