.login-container {
    display: flex;
    justify-content: space-between;
    padding: 50px;
    height: 100vh;
    background: linear-gradient(to right, #1e90ff, #ffffff);
}

.login-left {
    flex: 1;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 24px;
}

.login-left h1 {
    font-size: 48px;
}

.login-left p {
    margin-top: 10px;
    font-size: 18px;
}

.login-right {
    flex: 1;
    background-color: #f0f8ff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.login-right form {
    display: flex;
    flex-direction: column;
}

.login-right label {
    margin-bottom: 8px;
    font-weight: bold;
}

.login-right input[type="text"],
.login-right input[type="password"] {
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.login-right input.button {
    background: #1e90ff;
    color: white;
    border: none;
    padding: 12px;
    border-radius: 5px;
    cursor: pointer;
}

.login-right .remember-me {
    margin-bottom: 20px;
}

.login-right a {
    margin-top: 20px;
    color: #1e90ff;
    text-decoration: none;
}
