.elementor-5192 .elementor-element.elementor-element-d844203{--display:flex;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--padding-top:150px;--padding-bottom:100px;--padding-left:20px;--padding-right:20px;}.elementor-5192 .elementor-element.elementor-element-5de8e28{--display:flex;}.elementor-5192 .elementor-element.elementor-element-f165d56{text-align:center;}:root{--page-title-display:none;}/* Start custom CSS for shortcode, class: .elementor-element-6f637a6b *//* Modern Student Registration Form CSS for Tutor LMS */

/* Import Google Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* Main Container Styling */
#tutor-registration-wrap {
    max-width: 800px;
    margin: 40px auto;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    font-family: 'Inter', sans-serif;
    padding: 40px;
    transition: all 0.3s ease;
}

/* Form Header (Add this before the form in your HTML if needed) */
.registration-header {
    text-align: center;
    margin-bottom: 35px;
}

.registration-header h2 {
    font-size: 32px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.registration-header p {
    color: #64748b;
    font-size: 16px;
}

/* Form Grid Layout */
.tutor-form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px 20px -10px;
}

.tutor-form-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 10px;
}

.tutor-form-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
    padding: 0 10px;
}

/* Form Group Styling */
.tutor-form-group {
    margin-bottom: 5px;
}

.tutor-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #334155;
    margin-bottom: 8px;
    letter-spacing: 0.3px;
}

/* Input Field Styling */
.tutor-form-group input[type="text"],
.tutor-form-group input[type="password"],
.tutor-form-group input[type="email"] {
    width: 100%;
    height: 48px;
    padding: 0 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 15px;
    color: #1e293b;
    background: #f8fafc;
    transition: all 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.tutor-form-group input:focus {
    outline: none;
    border-color: #6366f1;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.1);
}

.tutor-form-group input::placeholder {
    color: #94a3b8;
    font-size: 14px;
}

/* Password Field Specific */
.tutor-password-field {
    position: relative;
}

.tutor-password-field input {
    padding-right: 45px;
}

.show-hide-btn {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #64748b;
    font-size: 18px;
}

.show-hide-btn::before {
    content: "\f06e";
    font-family: "Font Awesome 6 Free";
    font-weight: 400;
}

.show-hide-btn.active::before {
    content: "\f070";
}

/* Password Strength Indicator */
.tutor-password-strength-checker {
    margin-bottom: 15px;
}

.tutor-password-strength-hint {
    margin-top: 10px;
}

.indicator {
    display: flex;
    gap: 8px;
    margin-bottom: 6px;
}

.indicator span {
    height: 6px;
    flex: 1;
    border-radius: 8px;
    background: #e2e8f0;
    transition: all 0.3s ease;
}

.indicator span.weak.active {
    background: #ef4444;
}

.indicator span.medium.active {
    background: #f59e0b;
}

.indicator span.strong.active {
    background: #10b981;
}

.text.tutor-fs-7 {
    font-size: 13px;
    color: #64748b;
}

/* Password Confirmation with Icon */
.tutor-form-wrap {
    position: relative;
}

.tutor-validation-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
}

.tutor-validation-icon.tutor-icon-mark::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

.tutor-color-success {
    color: #10b981;
}

/* Terms and Conditions */
.tutor-mb-24 {
    margin-bottom: 24px;
    padding: 0 10px;
    font-size: 14px;
    color: #475569;
}

.tutor-mb-24 a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.tutor-mb-24 a:hover {
    color: #4f46e5;
    text-decoration: underline;
}

/* Register Button */
.tutor-btn {
    width: calc(100% - 20px);
    margin: 0 10px;
    height: 52px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.tutor-btn-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.tutor-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
}

.tutor-btn-primary:active {
    transform: translateY(0);
}

/* Social Login Section */
#tutor-pro-social-authentication {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f1f5f9;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

/* Google Button Styling */
#tutor-pro-google-authentication {
    width: 100%;
    display: flex;
    justify-content: center;
}

#tutor-pro-google-authentication iframe {
    width: 100% !important;
    max-width: 280px !important;
    height: 45px !important;
    border-radius: 8px !important;
    overflow: hidden;
}

/* Twitter Button Styling */
#tutor-pro-twitter-login {
    width: 280px;
    height: 45px;
    background: #1DA1F2;
    border: none;
    border-radius: 8px;
    color: white;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

#tutor-pro-twitter-login:hover {
    background: #1a8cd8;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.3);
}

#tutor-pro-twitter-login i {
    font-size: 18px;
}

/* Error and Success States */
.tutor-form-group input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.tutor-form-group input.success {
    border-color: #10b981;
    background: #f0fdf9;
}

/* Responsive Design */
@media (max-width: 640px) {
    #tutor-registration-wrap {
        padding: 25px 20px;
        margin: 20px;
    }
    
    .tutor-form-col-6 {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .tutor-form-row {
        margin: 0 0 15px 0;
    }
    
    .registration-header h2 {
        font-size: 26px;
    }
    
    #tutor-pro-twitter-login {
        width: 100%;
    }
}

/* Loading State for Button */
.tutor-btn.loading {
    position: relative;
    color: transparent;
}

.tutor-btn.loading::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid white;
    border-radius: 50%;
    border-top-color: transparent;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Hover Effects on Input Groups */
.tutor-form-group:hover input {
    border-color: #cbd5e1;
}

/* Divider with OR text */
.social-divider {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #94a3b8;
    font-size: 14px;
    margin: 10px 0;
}

.social-divider::before,
.social-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #e2e8f0;
}

/* Additional Helper Classes */
.tutor-pt-24 {
    padding-top: 24px;
}

.tutor-d-flex {
    display: flex;
}

.tutor-flex-column {
    flex-direction: column;
}

.tutor-justify-center {
    justify-content: center;
}

.tutor-align-center {
    align-items: center;
}

.tutor-border-top-light {
    border-top: 1px solid #e2e8f0;
}

.tutor-mt-20 {
    margin-top: 20px;
}/* End custom CSS */