.login-page {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.background-overlay {
    position: fixed;
    inset: 0 0 0 0;
    z-index: -1;
    background: linear-gradient(42deg, #000064, black, #4f4f93);
}

.auth-section {
    background: white;
    padding: 30px 60px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    text-align: center;
}

.auth-section .title {
    margin-bottom: 20px;
}

.auth-forms {
    display: flex;
    gap: 50px;
    justify-content: center;
    flex-wrap: wrap;
}

.auth-form {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

.auth-form h3 {
    margin-bottom: 20px;
    color: #3246c6;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .auth-forms {
        gap: 10px;
    }

    .auth-form h3 {
        margin-bottom: 10px;
        color: #3246c6;
    }

    .auth-section {
        padding: 20px 40px;
        margin-bottom: 0px;
    }

    .form-group {
        margin-bottom: 5px;
        text-align: left;
    }

    .auth-section .title {
        margin-bottom: 10px;
    }
}