body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Nunito Sans', sans-serif;
    background-color: #EDEDED;
    height: 100%;
}

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

.image-container {
    flex: 1.7;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.form-container {
    flex: 1;
    background-color: #EDEDED;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container h1 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #212121;
}

.form-container form {
    display: flex;
    flex-direction: column;
}

.form-container label {
    margin-bottom: 8px;
    font-size: 14px;
    color: #616161;
}

.form-container input {
    margin-bottom: 20px;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
    background: transparent;
}

.forgot-password {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 20px;
}

.forgot-password a {
    color: #50C878;
    text-decoration: none;
}

.forgot-password a:hover {
    text-decoration: underline;
}

.form-container button {
    padding: 12px;
    font-size: 16px;
    color: white;
    background-color: #50C878;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.form-container button:hover {
    background-color: #50C878;
}

.signup-link {
    text-align: center;
    margin-top: 20px;
}

.signup-link a {
    color: #50C878;
    text-decoration: none;
}

.signup-link a:hover {
    text-decoration: underline;
}

.message-box {
    padding: 15px;
    border-radius: 5px;
    margin: 10px 0;
    font-size: 16px;
    font-weight: bold;
    display: block;
}

.message-box.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #155724;
}

.message-box.danger {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #721c24;
}