.auth-background {
    background-image: url('../images/mtn-view.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
}


.welcome-banner {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    text-align: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-bottom: 3px solid #007bff;
}

.welcome-banner h1 {
    color: #333;
    margin: 0;
    font-size: 2.5rem;
    font-family: 'Playfair Display', serif;
}

.welcome-banner p {
    color: #666;
    margin: 10px 0 0;
    font-size: 1.2rem;
}


.auth-card {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.auth-card .card-body {
    padding: 2rem;
}

.auth-title {
    color: #333;
    margin-bottom: 1.5rem;
}

.form-control {
    border-radius: 8px;
}

.btn-primary {
    border-radius: 8px;
    padding: 10px 20px;
} 