body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Segoe UI', sans-serif;
    background: #f4f4f4;
}

.container {
    display: flex;
    height: 100vh;
}

.form-container {
    width: 40%;
    background: white;
    padding: 4rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.image-container {
    flex-grow: 1;
    background-image: url('background.jpeg'); /* Place your background image here */
    background-size: cover;
    background-position: center;
}

h2 {
    margin-bottom: 1.5rem;
}

form input {
    display: block;
    width: 100%;
    padding: 0.8rem;
    margin: 0.5rem 0 1rem 0;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 100%;
    padding: 0.8rem;
    background: #0073aa;
    border: none;
    color: white;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background: #005f8d;
}

.loading {
    display: none;
    margin-top: 1rem;
}

.error {
    color: red;
    font-size: 0.9rem;
}

.success {
    color: green;
    font-size: 0.9rem;
}
