body {
    background-color: #add8e6;
    /* Light Blue Background */
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    /* Remove default margin */
}

.container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    margin-top: 20px;
    width: 90%;
}

.form-container {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    width: 400px;
}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333333;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #555555;
}

input[type="text"],
input[type="email"] {
    padding: 8px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.button-container {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    color: white;
    background-color: #4CAF50;
    transition: background-color 0.3s ease;
}

button:hover {
    background-color: #45a049;
}

.navbar {
    list-style-type: none;
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
}

.navbar li {
    display: inline;
    margin: 0 10px;
}

.navbar a {
    text-decoration: none;
    font-weight: bold;
    color: #333333;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: #4CAF50;
}
