﻿body {
    background: linear-gradient(135deg, #f0f8ff, #e6f7e6);
}

.middle_div {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1) !important;
    background-color: #ffffff;
    border-radius: 10px;
}

input,
textarea {
    background-color: #f7f7f7 !important;
    color: #333333; /* Dark gray text color */
    border: 0.5px solid #d5d5d5 !important; /* Light gray border */
    border-radius: 5px; /* Rounded corners for a modern look */
    padding: 60px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box; /* Ensure padding is included in the width */
    transition: border-color 0.3s ease; /* Smooth transition on focus */
}

    input:focus,
    textarea:focus {
        border-color: #00aaff !important; /* Sky blue border when focused */
        outline: none; /* Remove default browser outline */
    }

::placeholder {
    color: #746d6d !important; /* Muted gray placeholder text */
    font-weight: 200;
}

.topTabs {
    font-weight: 600;
    font-family: math;
    margin: 5px;
}

@media (min-width: 641px) {
    .rm-bdr {
        border-top-right-radius: 0px !important;
    }
}

/****************/
.outline_Btn {
    outline: 2px solid black;
}


/************loader*********/

.loading {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 24px;
    z-index: 9999; /* Ensures it's on top of everything else */
}

.loading-text {
    margin-top: 20px;
    font-weight: bold;
    color: #4a90e2; /* A nice blue color */
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.spinner {
    border: 8px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 8px solid #4a90e2; /* Spinner color */
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite; /* Spinner animation */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}




/**********for hidden info div***************/
.hidden {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}

.show {
    opacity: 1;
    pointer-events: auto;
}

/*****************For form Navigation tabs******************/
.nav-btn {
    letter-spacing: 0.3px;
}

    /* Button hover effects */
    .nav-btn:hover {
        transform: translateY(-1px);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    /* Focus effect for accessibility */
    .nav-btn:focus {
        outline: none;
        box-shadow: 0 0 0 3px rgba(59, 153, 252, 0.3);
    }

    /* Icon adjustments */
    .nav-btn i {
        transition: transform 0.2s ease-in-out;
    }

    .nav-btn:hover i {
        transform: rotate(10deg);
    }
