/* Production Registration Form Styles */



#registrationForm {
    background-color: white;
    padding: 2rem;
    border-radius: 12px;
    width: 100%;
   
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.rf-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.rf-form-group {
    margin-bottom: 1rem;
}

.rf-input {
    width: 100%;
    padding: 0.875rem 1rem;
    background-color: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    color: #333;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.25;
    height: 48px;
}

.rf-input:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    outline: none;
    background-color: white;
}

.rf-input::placeholder {
    color: #94a3b8;
}

.rf-input-container {
    position: relative;
    width: 100%;
}

.rf-validation-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    display: none;
    z-index: 2;
}

.rf-validation-icon.valid.show {
    display: block;
    color: #10b981;
}

.rf-validation-icon.invalid.show {
    display: block;
    color: #ef4444;
}

.rf-phone-input-container {
    position: relative;
    width: 100%;
}

.rf-phone-input-container .rf-validation-icon {
    right: 12px;
    z-index: 10;
}


.rf-button {
    width: 100%;
    padding: 0.875rem 1.25rem;
    background: linear-gradient(45deg, #0076d1, #044a80);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rf-button:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.rf-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    background: #94a3b8;
    transform: none;
}

.rf-form-footer {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    color: #64748b;
    padding: 1rem;
    background: #fef3c7;
    border-radius: 8px;
    line-height: 1.4;
    border-left: 4px solid #f59e0b;
}

.rf-footer-icon {
    width: 16px;
    height: 16px;
    color: #f59e0b;
    margin-top: 0.125rem;
    flex-shrink: 0;
}


@media (max-width: 640px) {
  

    .rf-form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .rf-form-group {
        margin-bottom: 0.75rem;
    }

    .rf-form-footer {
        padding: 0.875rem;
        font-size: 0.75rem;
        margin-top: 1rem;
    }

}