.login-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: #c84124;
}

.login-box {
    width: 900px;
    max-width: 100%;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: #fff;
}

/* LEFT SIDE */
.login-left {
    width: 50%;
    background: linear-gradient(135deg, #b22222, #f97316);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    padding: 40px;
}

.overlay-text h3 {
    font-size: 26px;
    font-weight: 700;
}

.overlay-text p {
    margin-top: 10px;
    opacity: 0.9;
}

/* RIGHT SIDE */
.login-right {
    width: 50%;
    padding: 40px;
}

/* BUTTON */
.login-btn {
    width: 100%;
    background: linear-gradient(90deg, #b22222, #f97316);
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 8px;
}

/* PASSWORD ICON */
.password-box {
    position: relative;
}

.password-box i {
    position: absolute;
    right: 10px;
    top: 12px;
    cursor: pointer;
}

/* MOBILE */
@media(max-width:768px){

.login-box {
    flex-direction: column;
}

.login-left {
    width: 100%;
    height: 200px;
}

.login-right {
    width: 100%;
}

}
