/* Register Custom Styles - Extracted from register.html */

.register-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.register-form-header {
    margin-bottom: 40px;
}

.register-form-header h3 {
    color: #333;
    font-weight: 700;
    font-size: 28px;
}

.register-form-header p {
    font-size: 14px;
}

.form-section {
    background: #fffbf0;
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid #f4a800;
}

.form-section h6 {
    color: #333;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-section h6 i {
    color: #f4a800;
    margin-right: 8px;
}

.form-label {
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-bottom: 8px;
}

.form-control, select {
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 10px 12px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus, select:focus {
    border-color: #f4a800;
    box-shadow: 0 0 0 3px rgba(244, 168, 0, 0.1);
}

.input-group-text {
    background: #f9f9f9;
    border: 1px solid #ddd;
    color: #f4a800;
}

.input-group-text i {
    font-size: 14px;
}

.toggle-password-btn {
    border: 1px solid #ddd;
    background: #f9f9f9;
    color: #f4a800;
    padding: 0 15px;
    transition: all 0.3s ease;
}

.toggle-password-btn:hover {
    background: #f4a800;
    color: white;
    border-color: #f4a800;
}

.file-input-wrapper {
    position: relative;
}

.file-input-wrapper input[type="file"] {
    display: none;
}

.file-label {
    display: block;
    padding: 15px;
    background: linear-gradient(135deg, #f4a800 0%, #f7c047 100%);
    color: white;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.file-label:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 168, 0, 0.3);
}

.file-label i {
    margin-right: 8px;
}

.password-input-group {
    position: relative;
}

.text-danger {
    color: #e74c3c;
}

.text-muted {
    color: #999;
    font-size: 13px;
}

.border-bottom {
    border-bottom: 1px solid #ddd !important;
}

.register-form-actions {
    margin-top: 30px;
}

.tp-btn-h1 {
    background: linear-gradient(135deg, #f4a800 0%, #f7c047 100%);
    color: white;
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.tp-btn-h1:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(244, 168, 0, 0.3);
}

.tp-btn-h1 i {
    margin-right: 8px;
}

.password-strength-container {
    margin-top: 8px;
}

.password-strength-bar {
    width: 100%;
    height: 6px;
    background: #e5e7eb;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.strength-fill {
    height: 100%;
    width: 0%;
    transition: width 0.3s ease, background-color 0.3s ease;
    background-color: #e74c3c;
}

.strength-fill.weak {
    width: 25%;
    background-color: #e74c3c;
}

.strength-fill.fair {
    width: 50%;
    background-color: #f39c12;
}

.strength-fill.good {
    width: 75%;
    background-color: #3498db;
}

.strength-fill.strong {
    width: 100%;
    background-color: #27ae60;
}

.password-strength-text {
    font-size: 12px;
    color: #666;
}

.input-feedback {
    display: none;
    font-size: 12px;
    margin-top: 4px;
}

.input-feedback.error {
    color: #e74c3c;
    display: block;
}

.input-feedback.success {
    color: #27ae60;
    display: block;
}

.input-feedback.warning {
    color: #f39c12;
    display: block;
}

.login-link-section {
    padding-top: 20px;
    border-top: 1px solid #ddd;
    margin-top: 30px;
}

.login-link-section a {
    color: #f4a800;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.login-link-section a:hover {
    color: #d98600;
}

.login-link-section a i {
    margin-right: 5px;
}
