/* Registration Form Styles */
.tss-registration-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 30px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.tss-registration-container h2 {
    text-align: center;
    color: #2c3338;
    margin-bottom: 10px;
    font-size: 32px;
}

.tss-registration-description {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 16px;
}

.tss-form-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 25px;
    border-left: 4px solid #007cba;
}

.tss-form-section h3 {
    margin-top: 0;
    color: #2c3338;
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e9ecef;
}

.tss-form-group {
    margin-bottom: 20px;
}

.tss-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3338;
}

.tss-form-group input[type="text"],
.tss-form-group input[type="email"],
.tss-form-group input[type="tel"],
.tss-form-group input[type="password"],
.tss-form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.tss-form-group input:focus,
.tss-form-group textarea:focus {
    border-color: #007cba;
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.tss-form-group small {
    display: block;
    margin-top: 5px;
    color: #666;
    font-size: 12px;
}

.tss-password-strength,
.tss-password-match {
    margin-top: 5px;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
}

.tss-password-strength.weak { background: #ffeaa7; color: #856404; }
.tss-password-strength.medium { background: #b8daff; color: #004085; }
.tss-password-strength.strong { background: #c3e6cb; color: #155724; }

.tss-password-match.mismatch { background: #f5c6cb; color: #721c24; }
.tss-password-match.match { background: #c3e6cb; color: #155724; }

.tss-terms-group {
    background: #fff3cd;
    padding: 20px;
    border-radius: 6px;
    border: 1px solid #ffeaa7;
}

.tss-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-weight: normal;
    cursor: pointer;
}

.tss-checkbox-label input[type="checkbox"] {
    margin-top: 3px;
}

.tss-form-submit {
    text-align: center;
    margin-top: 30px;
}

.tss-submit-btn {
    background: linear-gradient(135deg, #007cba 0%, #005a87 100%);
    color: white;
    padding: 15px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tss-submit-btn:hover {
    background: linear-gradient(135deg, #005a87 0%, #004670 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.tss-submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.tss-login-link {
    margin-top: 20px;
    color: #666;
}

.tss-login-link a {
    color: #007cba;
    text-decoration: none;
}

.tss-login-link a:hover {
    text-decoration: underline;
}

/* Error and Success Messages */
.tss-errors {
    background: #f8d7da;
    color: #721c24;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border: 1px solid #f5c6cb;
}

.tss-errors ul {
    margin: 0;
    padding-left: 20px;
}

.tss-errors li {
    margin-bottom: 5px;
}

.tss-success {
    background: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    border: 1px solid #c3e6cb;
}

.tss-already-logged-in {
    text-align: center;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .tss-registration-container {
        padding: 20px 15px;
    }
    
    .tss-form-section {
        padding: 20px 15px;
    }
    
    .tss-submit-btn {
        width: 100%;
        padding: 15px 20px;
    }
}
