body {
    font-family: Arial, sans-serif;
    background-color: violet;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.container {
    padding: 30px;
    border-radius: 16px;
    width: 90%;
    max-width: 400px;
    text-align: center;
}

h1 {
    color: #333333;
    margin-bottom: 20px;
}

.form-group {
    position: relative;
    margin-top: 15px;
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="number"],
.form-group input[type="password"] {
    width: 90%;
    padding: 12px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-size: 18px;
    transition: border-color 0.3s;
    outline: none;
    background: transparent;
}

.form-group input[type="text"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="number"]:focus,
.form-group input[type="password"]:focus {
    border-color: #007bff;
}

.form-group label {
    position: absolute;
    top: 12px;
    left: 12px;
    font-size: 16px;
    color: #555555;
    transition: all 0.3s;
    pointer-events: none;
}

.form-group input[type="text"]:focus~label,
.form-group input[type="tel"]:focus~label,
.form-group input[type="number"]:focus~label,
.form-group input[type="password"]:focus~label,
.form-group input[type="text"]:not(:placeholder-shown)~label,
.form-group input[type="tel"]:not(:placeholder-shown)~label,
.form-group input[type="number"]:not(:placeholder-shown)~label,
.form-group input[type="password"]:not(:placeholder-shown)~label {
    top: -10px;
    left: 12px;
    font-size: 12px;
    color: #007bff;
    background-color: #ffffff;
    padding: 0 5px;
}

.is-invalid {
    border-color: red !important;
    color: red !important;
}

button {
    background-color: #ffc107;
    color: #ffffff;
    padding: 14px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s, box-shadow 0.3s;
    margin-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

button img {
    margin-right: 10px;
    width: 24px;
    height: 24px;
}

button:hover {
    background-color: #0056b3;
    box-shadow: 0 6px 12px rgba(0, 91, 187, 0.5);
}

button:disabled {
    background-color: light-dark(rgba(239, 239, 239, 0.3), rgba(19, 1, 1, 0.3));
    color: light-dark(rgba(16, 16, 16, 0.3), rgba(255, 255, 255, 0.3));
    border-color: light-dark(rgba(118, 118, 118, 0.3), rgba(195, 195, 195, 0.3));
    box-shadow: unset;
    cursor: not-allowed;
}

.loading-spinner {
    display: none;
    margin: 20px auto;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    border-top: 4px solid #007bff;
    animation: spin 1.2s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.loading-message {
    display: none;
    margin-top: 20px;
    color: #333333;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    text-align: center;
    background-color: #f7f7f7;
    border: 1px solid #dddddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease;
}

.loading-message.visible {
    display: block;
    opacity: 1;
}

.loading-message.hidden {
    opacity: 0;
    display: none;
}

ul {
    color: red;
    list-style-type: none;
    padding: 0;
    margin-bottom: 20px;
}

.form-image {
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.form-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.otp-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.otp-box {
    width: 45px;
    height: 45px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    color: #333333;
    background-color: #ffffff;
    transition: all 0.3s;
}

.otp-box:focus {
    border-color: #007bff;
    box-shadow: 0 0 0 2px rgba(0, 123, 255, 0.25);
    outline: none;
}

.otp-label {
    display: block;
    text-align: center;
    margin-bottom: 10px;
    font-size: 16px;
    color: #555555;
}

.list-box {
    padding: 10px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    height: 110px;
    position: relative;
}

.scroll-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.5s ease;
}

.item {
    display: flex;
    align-items: center;
    background-color: #f7f7f7;
    border-radius: 8px;
    padding: 10px;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 5px;

}

.record_logo {
    width: 40px;
    height: 40px;
    background-color: #007bff;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.record_logo img {
    width: 100%;
    height: auto;
}

.h1 {
    font-weight: bold;
    margin: 0;
    text-align: left;
}

.h2 {
    color: #666;
    font-size: 0.9em;
    margin: 2px 0 0 0;
    text-align: left;
}

.avatar {
    width: 100px;
    height: auto;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}

.text-slate-500 {
    --tw-text-opacity: 1;
    color: rgb(100 116 139/var(--tw-text-opacity))
}

.text-sm {
    font-size: .875rem;
    line-height: 1.25rem
}


.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #007bff00;
    color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.header .logo {
    display: flex;
    align-items: center;
}

.header .logo img {
    height: 40px;
    margin-right: 10px;
}

.header .search-icon {
    display: flex;
    align-items: center;
    cursor: pointer;
}

.header .search-icon img {
    height: 24px;
    width: 24px;
    margin-right: 10px;
}

.header h1 {
    font-size: 18px;
    margin: 0;
    font-weight: bold;
}


.testimonials-carousel {
    background-color: #f7f7f7;
    border-top: 1px solid #e0e0e0;
    margin-top: 30px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonials-carousel h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
}

.carousel-wrapper {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.testimonial-item {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
    padding: 15px;
    box-sizing: border-box;
}

.testimonial-item p {
    font-size: 16px;
    color: #555;
    font-style: italic;
    margin: 0 0 5px;
}

.testimonial-item span {
    font-size: 14px;
    color: #007bff;
    font-weight: bold;
}

.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}


.carousel-controls button:hover {
    background-color: #0056b3;
}

.footer-about {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.footer-about a {
    text-decoration: none;
}

.footer-about .sitename img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
}

.footer-contact p {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
}

.footer-contact p.strong {
    font-weight: bold;
}

.footer-contact p span {
    color: #007bff;
}

.footer-contact p.mt-3 {
    margin-top: 15px;
}

#loading {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.125);
    text-align: center;
    display: flex;
    z-index: 99999;
    justify-content: center;
    align-items: center;
}

#loading::before {
    content: "";
    display: block;
    width: 40px;
    height: 40px;
    margin: 30px auto 10px;
    border: 5px solid rgb(7, 89, 133, 1);
    border-top: 5px solid #fff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

    100% {
        transform: rotate(360deg);
    }
}

.loader {
    width: 45px;
    aspect-ratio: 1;
    --c: no-repeat linear-gradient(#000 0 0);
    background:
        var(--c) 0 0,
        var(--c) 0 100%,
        var(--c) 50% 50%,
        var(--c) 100% 0,
        var(--c) 100% 100%;
    animation: l13 1s infinite alternate;
}

@keyframes l13 {

    0%,
    10% {
        background-size: 20% 100%
    }

    50% {
        background-size: 20% 20%
    }

    90%,
    100% {
        background-size: 100% 20%
    }
}