body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #dceeff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.login-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-box {
    background-color: #0d3b66;
    display: flex;
    flex-direction: row;
    width: 600px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    overflow: hidden;
}

.login-left {
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40%;
    padding: 20px;
}

.login-left img {
    max-width: 100%;
    height: auto;
}

.login-right {
    padding: 40px;
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right h2 {
    margin-bottom: 20px;
}

#login-form {
    color: white;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-right input {
    padding: 10px;
    border-radius: 6px;
    border: none;
    margin-bottom: 15px;
    font-size: 16px;
}

.login-right button {
    padding: 10px;
    background-color: #d9e9f7;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.login-right button:hover {
    background-color: #ffffff;
}
