﻿/* General Container */
.kyc-container {
    width: 100%;
    max-width: 500px;
    margin: 50px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    color: #333;
    border: 2px solid #ddd; /* Added border to middle box */
}

/* Heading  new  26-6-25 */
.main-heading {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 20px;
}

/* Bold and Enlarged Note Text */
.note-text {
    text-align: center;
    font-size: 18px; /* Increased size */
    font-weight: bold; /* Make text bold */
    color: #333;
    margin-bottom: 20px;
}

/* Form Text */
.kyc-form p {
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
    color: #555;
}

/* Form Group */
.form-group {
    margin-bottom: 20px;
}

/* Label */
label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 5px;
    display: block;
}

/* Input Field - Increased Font Size and Centered */
input[type="text"] {
    width: 100%;
    padding: 15px; /* Increase padding for larger text area */
    font-size: 20px; /* Increased font size */
    color: #333;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
    transition: all 0.3s ease;
    text-align: center; /* Center the text */
      background: #fff;
        box-shadow: rgba(33, 35, 38, 0.3) 0px 10px 10px -10px;
         letter-spacing: 0.04em;
            outline: none;
}



/* Input Focus Effect - Highlighted Border */
input[type="text"]:focus {
    border-color: #3498db;
    box-shadow: 0 0 5px rgba(52, 152, 219, 0.3);
}

/* CAPTCHA Box */
.captcha-box {
    text-align: center;
    margin-top: 20px;
}

/* Submit Button */
.btn-wrap {
    text-align: center;
}

.btn-submit {
    padding: 12px 30px;
    background-color: #3498db;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

/* Button Hover */
.btn-submit:hover {
    background-color: #2980b9;
}

/* Button Focus */
.btn-submit:focus {
    outline: none;
}

/* Responsive Design */
@media (max-width: 600px) {
    .kyc-container {
        padding: 15px;
    }

    .main-heading {
        font-size: 20px;
    }

    .btn-submit {
        width: 100%;
    }
}


.kyc-info-text {
    margin-top: 30px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.kyc-info-text ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.kyc-info-text li {
    margin-bottom: 6px;
}

.kyc-info-text a {
    color: #007bff;
    text-decoration: underline;
}

.kyc-info-text a:hover {
    text-decoration: none;
}
.highlighted-ol {
    margin-left: 20px;
    padding-left: 10px;
}

.highlighted-ol li::marker {
    font-weight: bold;
    color: #007bff; /* Blue color for the number */
    font-size: 16px;
}

/* Overlay */
.custom-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    background: rgba(0, 0, 0, 0.4);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

/* Modal Box */
.custom-modal-box {
    background: #ffffff;
    border-radius: 12px;
    width: 90%;
    max-width: 400px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: scaleIn 0.3s ease;
}

/* Title */
.custom-modal-title {
    margin-bottom: 15px;
    font-size: 20px;
    color: #333;
}

/* Message */
.custom-modal-message {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Footer */
.custom-modal-footer {
    text-align: center;
}

/* Button */
.custom-modal-button {
    background-color: #007bff;
    color: #fff;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.custom-modal-button:hover {
    background-color: #0056b3;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes scaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to   { transform: scale(1); opacity: 1; }
}


#loaderOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.6);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(2px);
}

.loader {
    border: 6px solid #f3f3f3;
    border-top: 6px solid #3498db;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    animation: spin 1s linear infinite;
}





@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
