.scp-registration-container {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.scp-form {
    background: #fff;
    padding: 40px;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    max-width: 100%;
    margin: 0;
    box-sizing: border-box;
}

.scp-form h2 {
    margin: 0 0 30px;
    font-size: 28px;
    color: #1a1a1a;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.scp-form h2 i {
    color: #dc3545;
    font-size: 26px;
}

.scp-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

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

.scp-form-group.scp-half {
    flex: 1;
    margin-bottom: 0;
}

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

.scp-form-group label .required {
    color: #e74c3c;
}

.scp-form-group input[type="text"],
.scp-form-group input[type="email"],
.scp-form-group input[type="password"],
.scp-form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.scp-form-group input:focus,
.scp-form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.scp-form-group input:disabled,
.scp-form-group select:disabled {
    background-color: #f5f5f5;
    cursor: not-allowed;
}

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

.scp-radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.scp-radio-group label {
    display: flex;
    align-items: center;
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
}

.scp-radio-group input[type="radio"] {
    margin-right: 8px;
    cursor: pointer;
}

.scp-checkbox {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    font-weight: normal !important;
}

.scp-checkbox input[type="checkbox"] {
    margin-right: 10px;
    margin-top: 3px;
    cursor: pointer;
}

.scp-error {
    display: block;
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

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

.scp-password-strength-bar {
    height: 6px;
    background-color: #e0e0e0;
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 6px;
}

.scp-password-strength-fill {
    height: 100%;
    width: 0%;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.scp-password-strength-fill.weak {
    width: 33%;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.scp-password-strength-fill.medium {
    width: 66%;
    background: linear-gradient(90deg, #f39c12, #e67e22);
}

.scp-password-strength-fill.strong {
    width: 100%;
    background: linear-gradient(90deg, #27ae60, #229954);
}

.scp-password-strength-text {
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    padding: 2px 0;
    transition: all 0.3s ease;
}

.scp-password-strength-text.weak {
    color: #e74c3c;
}

.scp-password-strength-text.medium {
    color: #f39c12;
}

.scp-password-strength-text.strong {
    color: #27ae60;
}

.scp-form-actions {
    margin-top: 30px;
    text-align: center;
}

.scp-btn {
    padding: 14px 40px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.scp-btn-primary {
    background-color: #3498db;
    color: #fff;
}

.scp-btn-primary:hover:not(:disabled) {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
}

.scp-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.scp-message {
    margin-top: 20px;
    padding: 15px 20px;
    border-radius: 4px;
    font-size: 14px;
}

.scp-message-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.scp-message-error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.scp-dashboard-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 12px;
}

.scp-btn-danger {
    background-color: #dc3545 !important;
    color: #fff !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.scp-btn-danger:hover {
    background-color: #c82333 !important;
    color: #fff !important;
    text-decoration: none !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
}

@media (max-width: 768px) {
    .scp-form {
        padding: 30px 20px;
    }
    
    .scp-form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .scp-form-group.scp-half {
        margin-bottom: 20px;
    }
    
    .scp-radio-group {
        flex-direction: column;
        gap: 10px;
    }

    .scp-dashboard-actions {
        justify-content: center;
    }
}
