* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    /* Poppins font apply kiya gaya hai */
    font-family: 'Poppins', sans-serif;
}

body {
   
    background-color: #f0f2f5;
}

.form {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

.form-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    background: white;
    box-shadow: 0px 15px 35px rgba(0,0,0,0.2);
    max-width: 1000px;
    width: 100%;
    border-radius: 12px;
    overflow: hidden; /* Round corners ke liye */
}

/* LEFT SIDE STYLING (Image Section) */
.form-left {
    flex: 1.2;
    min-width: 350px;
    height: 650px;
    /* Image Link Added Below */
    background-image: url('https://img.freepik.com/free-photo/female-graduate-holding-her-diploma-smiling_23-2148950577.jpg?t=st=1721151600~exp=1721155200~hmac=80447336a43b236b2f6b899859f8c6e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8e8'); 
    background-size: cover;
    background-position: center;
    color: white;
    display: flex;
}

/* Image URL ko aap local path 'pexels-image.jpg' se bhi replace kar sakte hain */

.overlay {
    background: rgba(75, 0, 130, 0.4); /* Purple tint for brand matching */
    width: 100%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Text ko niche lane ke liye */
}

.overlay h2 { font-size: 32px; margin-bottom: 10px; }

.divider-one {
    height: 4px;
    width: 50px;
    background-color: #fff;
    margin-bottom: 20px;
}

/* RIGHT SIDE STYLING */
.form-right {
    flex: 1;
    min-width: 350px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.social-btn {
    height: 45px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.2s;
}

.social-btn:hover { background: #f8f9fa; border-color: #bbb; }

.divider {
    text-align: center;
    position: relative;
    margin: 20px 0;
}
.divider::before {
    content: "";
    position: absolute;
    top: 50%; left: 0; right: 0;
    height: 1px; background: #ddd;
}
.divider span {
    background: white;
    padding: 0 10px;
    position: relative;
    color: #888;
    font-size: 14px;
}

/* INPUTS */
.input-group label {
    display: block;
    font-weight: 600;
    margin: 15px 0 5px;
    font-size: 14px;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1.5px solid #eee;
    border-radius: 8px;
    background: #fafafa;
}

.signin-btn {
    background-color: #6a1b9a; /* Purple theme */
    color: white;
    padding: 14px;
    border: none;
    border-radius: 8px;
    margin-top: 25px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
}

.form-footer { text-align: center; margin-top: 20px; }
.forgot { color: #6a1b9a; margin-bottom: 10px; cursor: pointer; }

/* RESPONSIVE DESIGN */
@media (max-width: 800px) {
    .form-container { flex-direction: column; }
    .form-left { height: 250px; min-width: 100%; }
    .form-right { min-width: 100%; padding: 30px 20px; }
    .overlay { justify-content: center; text-align: center; align-items: center; }
}