﻿
/* Gradient background for the welcome section */
.welcome-section {
    background: linear-gradient(135deg, #6b06b3ed, #e3e3e3);
    color: white;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    text-align: center; /* Center text on smaller screens */
}

.login-section {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
    padding: 40px;
}

.login-container {
    width: 50rem;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden; /* Ensures border-radius effect on all sides */
}

.btn-login {
    width: 7rem;
    border-radius: 25px;
}

.form-control:focus {
    box-shadow: none;
    border-color: #757575 !important;
}

/* Mobile specific adjustments */
@media (max-width: 767.98px) {
    .welcome-section {
        border-radius: 15px 15px 0 0;
        padding: 20px;
    }

    .login-section {
        border-radius: 0 0 15px 15px;
        padding: 20px;
    }

    .login-container {
        flex-direction: column; /* Stacks the sections vertically */
        margin: 0 auto;
    }
}
