body {
    background: linear-gradient(to right, #3498db, #2ecc71);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.auth-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.auth-content {
    max-width: 400px;
    width: 100%;
}

.card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

.app-brand-logo img {
    max-width: 200px;
}

.form-control {
    border-radius: 0.5rem;
}

.btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    border-radius: 0.5rem;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
}