/* GFG Global Verify Search - Styles */

.gfg-verify-container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
    font-family: 'Lato', sans-serif;
}

/* Text input */
.gfg-verify-input {
    width: 100%;
    padding: 12px;
    border: 2px solid #152f59;
    border-radius: 6px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
    text-align: center;
    letter-spacing: 1px;
}

.gfg-verify-input:focus {
    outline: none;
    border-color: #152f59;
    box-shadow: 0 0 0 3px rgba(21, 47, 89, 0.15);
}

.gfg-verify-input-error {
    border-color: #dc3545 !important;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.15) !important;
}

/* Buttons */
.gfg-verify-button {
    display: inline-block;
    padding: 12px 32px;
    margin-top: 15px;
    background-color: #152f59;
    color: #ffffff !important;
    border: 2px solid #152f59;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    font-family: 'Lato', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
}

.gfg-verify-button:hover {
    background-color: #ffffff;
    border-color: #152f59;
    color: #152f59 !important;
    text-decoration: none;
}

#gfg-verify-form-wrapper {
    text-align: center;
}

/* Loading spinner */
.gfg-verify-loading {
    text-align: center;
    padding: 40px 20px;
}

.gfg-verify-spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #e0e0e0;
    border-top-color: #152f59;
    border-radius: 50%;
    animation: gfg-spin 0.8s linear infinite;
}

@keyframes gfg-spin {
    to { transform: rotate(360deg); }
}

.gfg-verify-loading p {
    margin-top: 12px;
    color: #555;
    font-size: 15px;
}

/* Result display */
.gfg-verify-result {
    text-align: center;
    padding: 20px 0;
}

.gfg-verify-pass {
    color: #198754 !important;
    font-size: 22px;
    font-weight: 700;
}

.gfg-verify-fail {
    color: #dc3545 !important;
    font-size: 22px;
    font-weight: 700;
}
