/* =========================
   Registration Wrapper
========================= */
.registration-wrapper {
    display: flex;
    justify-content: center;
    padding: 80px 15px;
}

/* =========================
   Card
========================= */
.registration-container {
    width: 100%;
    max-width: 900px;
    background: #fff;
    padding: 40px 35px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #eee;
}

/* Title */
.registration-title {
    text-align: center;
    margin-bottom: 30px;
    font-weight: 600;
    color: #222;
}

/* =========================
   Form Layout
========================= */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

/* =========================
   Floating Input
========================= */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 45px 14px 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    outline: none;
    transition: 0.25s;
}

/* Focus */
.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

/* Label */
.form-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 13px;
    color: #777;
    background: #fff;
    padding: 0 5px;
    pointer-events: none;
    transition: 0.2s ease;
}

/* Floating animation */
.form-group input:focus+label,
.form-group input:not(:placeholder-shown)+label,
.form-group select:focus+label,
.form-group select:not([value=""])+label {
    top: -8px;
    font-size: 11px;
    color: var(--primary);
}

/* Mandatory star */
.mandatory {
    color: red;
}

/* =========================
   Password Toggle
========================= */
.password-wrapper .toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 11px;
    color: var(--primary);
    cursor: pointer;
    font-weight: 600;
}

/* =========================
   Footer Section
========================= */
.form-footer {
    margin-top: 10px;
}

.form-footer label {
    font-size: 13px;
    display: block;
    margin-bottom: 15px;
}

.form-footer a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

/* Button */
.btn-primary {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    background: var(--primary);
    color: #fff;
    transition: 0.25s;
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

/* Login text */
.login-footer-text {
    text-align: center;
    margin-top: 18px;
    font-size: 13px;
}

.center {
    text-align: center;
}

.otp-info {
    font-size: 14px;
    margin-bottom: 25px;
    color: #555;
}

.registration-logo {
    text-align: center;
    margin-bottom: 10px;
}

/* =========================
   Responsive
========================= */
@media (max-width: 768px) {

    .registration-container {
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
