.registration-section {
    padding: 60px 20px;
    background: #f4f7f9;
    display: flex;
    justify-content: center;
    font-family: sans-serif;
}

.reg-container {
    width: 100%;
    max-width: 800px; /* Two column layout ke liye width thodi zyada rakhi hai */
}

.reg-box {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.reg-header {
    text-align: center;
    margin-bottom: 35px;
}

.reg-header h2 {
    color: #0b1c39; /* Necabs Dark Blue */
    font-size: 28px;
}

.reg-header h2 span {
    color: #df0617; /* Necabs Red */
}

/* Grid Layout for Form */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Desktop par 2 columns */
    gap: 20px;
}

.input-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}

.input-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    box-sizing: border-box;
}

.input-group input:focus {
    border-color: #df0617;
    outline: none;
}

/* Policy & Button */
.policy-checkbox {
    margin: 25px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.policy-checkbox a {
    color: #df0617;
    text-decoration: none;
    font-weight: 600;
}

.reg-btn {
    width: 100%;
    padding: 15px;
    background: #df0617;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.reg-btn:hover {
    background: #0b1c39; /* Hover par Dark Blue ho jayega */
}

.login-link-box {
    margin-top: 25px;
    text-align: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.login-link-box a {
    color: #df0617;
    font-weight: 700;
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr; /* Mobile par single column */
    }
    
    .reg-box {
        padding: 25px 15px;
    }

    .reg-header h2 {
        font-size: 22px;
    }
}


/* Invalid fields ko red border dena */
input:invalid:focus {
    border-color: #df0617 !important; /* Necabs Red */
    background-color: #fff8f8;
}

/* Label ke sath star (*) ka color red */
.input-group label {
    display: flex;
    justify-content: space-between;
}

.pass-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.pass-wrapper input {
    width: 100%;
    padding-right: 40px; /* Icon ke liye space */
}

.toggle-password {
    position: absolute;
    right: 15px;
    cursor: pointer;
    color: #666;
    font-size: 14px;
    z-index: 5;
}

.toggle-password:hover {
    color: #df0617; /* Necabs Red on hover */
}