
/*# sourceMappingURL=custom.min.css.map */
.subtitle {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    font-size: 14px;
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

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

.iti {
    width: 100%;
}

.iti__flag-container {
    padding: 0;
}

.iti__selected-flag {
    padding: 12px 15px;
    border-radius: 8px 0 0 8px;
}

#phoneNumber {
   /* width: 100%;
    padding: 12px 15px;*/
    padding-left: 90px;
   /* border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: inherit;*/
}

    #phoneNumber:focus {
        outline: none;
        border-color: #667eea;
        box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
    }

    #phoneNumber.valid {
        border-color: #28a745;
        background-color: #f0fff4;
    }

    #phoneNumber.invalid {
        border-color: #dc3545;
        background-color: #fff5f5;
    }

    #phoneNumber.checking {
        border-color: #ffc107;
        background-color: #fffef0;
    }

.iti--separate-dial-code .iti__selected-flag {
    background-color: #f8f9fa;
}

.iti--separate-dial-code .iti__selected-dial-code {
    color: #667eea;
    font-weight: 600;
}

/* Live validation status */
.validation-status {
    position: absolute;
    right: 15px;
    top: 25%;
    transform: translateY(-50%);
    font-size: 20px;
    pointer-events: none;
}

.status-icon {
    display: none;
    animation: fadeIn 0.3s ease;
}

    .status-icon.show {
        display: inline-block;
    }

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.checking-icon {
    animation: spin 1s linear infinite;
}

/* Validation details panel */
.validation-panel {
    margin-top: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
    border: 2px solid #e0e0e0;
    transition: all 0.3s ease;
}

    .validation-panel.valid {
        background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
        border-color: #28a745;
    }

    .validation-panel.invalid {
        background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
        border-color: #dc3545;
    }

.panel-header {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    color: #333;
}

.panel-header-icon {
    margin-right: 10px;
    font-size: 20px;
}

.validation-checks {
    display: grid;
    gap: 10px;
}

.check-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: white;
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    font-size: 14px;
    font-weight: 600;
    flex-shrink: 0;
}

.check-item.pending .check-icon {
    background: #ffc107;
    color: white;
}

.check-item.valid .check-icon {
    background: #28a745;
    color: white;
}

.check-item.invalid .check-icon {
    background: #dc3545;
    color: white;
}

.check-label {
    flex: 1;
    color: #333;
}

.check-value {
    font-weight: 600;
    color: #555;
    margin-left: auto;
}

/* Country info box */
.country-info {
    margin-top: 15px;
    padding: 15px;
    background: #e7f3ff;
    border-left: 4px solid #2196F3;
    border-radius: 6px;
}

.country-info-title {
    font-weight: 600;
    color: #0c5460;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
}

.country-flag {
    font-size: 24px;
    margin-right: 10px;
}

.country-details {
    font-size: 13px;
    color: #0c5460;
    line-height: 1.6;
}

.detail-item {
    margin-bottom: 4px;
}

.detail-label {
    font-weight: 600;
}

.info-box {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 15px;
    margin-top: 20px;
    border-radius: 4px;
    font-size: 13px;
    color: #856404;
}

.example-numbers {
    margin-top: 10px;
    padding: 10px;
    background: white;
    border-radius: 4px;
}

.example-item {
    padding: 5px 0;
    font-family: 'Courier New', monospace;
    color: #667eea;
    cursor: pointer;
    transition: all 0.2s;
}

    .example-item:hover {
        color: #764ba2;
        transform: translateX(5px);
    }

/* Auto-validation badge */
.auto-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    margin-left: 10px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.8;
        transform: scale(0.95);
    }
}

/* Warning shake animation for invalid input */
@keyframes shake {
    0%, 100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    75% {
        transform: translateX(5px);
    }
}

.shake {
    animation: shake 0.3s ease;
}

.input-hint {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    display: flex;
    align-items: center;
}

.input-hint-icon {
    margin-right: 5px;
}