* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f0f2f5;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-card {
    background: #fff;
    width: 900px;
    height: 500px;
    display: flex;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* Left Form Styling */
.form-container {
    flex: 1;
    padding: 50px;
    z-index: 2;
    max-width: 50%;
}

h2 { font-size: 28px; margin-bottom: 5px; }

.underline {
    width: 50px;
    height: 4px;
    background: #000;
    margin-bottom: 30px;
}

.input-group {
    margin-bottom: 20px;
    border-bottom: 1px solid #ccc;
}

.input-group label {
    display: block;
    font-size: 14px;
    color: #666;
}

.input-group input {
    width: 100%;
    border: none;
    padding: 10px 0;
    outline: none;
    font-size: 16px;
}

.btn-forget {
    width: 70%;
    padding: 15px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-forget:hover { background: #333; }

.login-link { margin-top: 20px; font-size: 14px; }
.login-link a { color: blue; text-decoration: none; font-weight: bold; }

/* Right Black Section */
.black-overlay {
    position: absolute;
    right: 0;
    width: 60%; /* Isse adjust karein agar text dab raha ho */
    height: 100%;
    background: #000;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Ye property black hisse ko piche dhakelti hai */
    clip-path: polygon(25% 0%, 100% 0%, 100% 100%, 0% 100%);
    padding-left: 10%;
}

.overlay-content { text-align: center; padding: 20px; }
.overlay-content h1 { font-size: 40px; margin-bottom: 15px; }
.sub-text { opacity: 0.7; font-size: 14px; margin-top: 10px; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .black-overlay { display: none; }
    .form-container { max-width: 100%; }
}