.login-container {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.login-box {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    width: 350px;
}

.login-box h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.login-form button {
    width: 100%;
    padding: 12px;
    background: #2B85E4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.login-options {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    font-size: 14px;
} 