body {
    margin: 0;
    height: 100vh;
    display: flex;
}

.right-pane {
    width: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.full-pane {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
}

.login-container {
    width: 80%;
    max-width: 320px;
}

.logo {
    text-align: center;
    margin-bottom: 20px;
}

.form-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    font-weight: bold;
    font-size: 13px;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    margin-top: 6px;
    font-size: 16px;
    height: 40px;
}