* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    min-height: 100vh;
    background: #f5f7fa;
}

.background-section {
    flex: 1;
    /* background: linear-gradient(rgba(40, 58, 90, 0.9), rgba(40, 58, 90, 0.9)), 
                url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80') no-repeat center center; */

    background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0)), 
    url('images/drawing.jpg') center center no-repeat;

    /* background-size: cover; */
    background-size: 100% 100%;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 5%;
    position: relative;     
    display: none;
}


/* Title Styling - Integrated into Background */
.banner-title {
    position: absolute;
    top: 17%;
    left: 35%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

.login-section {
    width: 100%;
    max-width: 500px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.logo {
    margin-bottom: 30px;
    font-size: 24px;
    font-weight: 600;
    color: #283a5a;
}

h1 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #283a5a;
}

.subtitle {
    color: #6c757d;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: #495057;
    font-weight: 500;
}

input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e4e8;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s;
}

input:focus {
    border-color: #4e73df;
    outline: none;
    box-shadow: 0 0 0 3px rgba(78, 115, 223, 0.15);
}

.remember-forgot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 13px;
}

.remember-me {
    display: flex;
    align-items: center;
}

.remember-me input {
    width: auto;
    margin-right: 8px;
}

.forgot-password a {
    color: #4e73df;
    text-decoration: none;
}

.login-btn {
    width: 100%;
    padding: 12px;
    background: #4e73df;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s;
}

.login-btn:hover {
    background: #3a5bd9;
}

.divider {
    margin: 25px 0;
    text-align: center;
    position: relative;
    color: #adb5bd;
    font-size: 13px;
}

.divider::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e0e4e8;
    z-index: -1;
}

.divider span {
    background: white;
    padding: 0 15px;
}

.social-login {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #e0e4e8;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
}

.social-btn:hover {
    background: #f8f9fa;
}

.register-link {
    text-align: center;
    font-size: 14px;
    color: #6c757d;
}

.register-link a {
    color: #4e73df;
    text-decoration: none;
    font-weight: 500;
}

@media (min-width: 992px) {
    .background-section {
        display: flex;
    }
    
    .login-section {
        width: 500px;
    }
}

/* Profile card in background */
.profile-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.profile-name {
    font-size: 22px;
    margin-bottom: 10px;
}

.profile-title {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 20px;
}

.profile-quote {
    font-style: italic;
    font-size: 15px;
    line-height: 1.6;
}