/* loading screen loader start */

#loading-screen {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
}

.player {
    width: 100px;
    height: 100px;
    position: relative;
    border-radius: 50%;
    overflow: visible;
    margin: 80px auto;
    animation: rotateLoader 2s infinite linear; /* Infinite rotation */
}

.player:hover {
    opacity: .8;
}

.left-side {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;    
    border: 2px solid #eee;
    border-left-color: transparent;
    border-bottom-color: transparent;
    transform: rotate(45deg);
    animation: rotateSideLeft 2s infinite linear; /* Infinite left side rotation */
}

.left-side.fill {
    border-color: transparent;
    border-left-color: #ff7f50; /* Coral color */
    border-bottom-color: #ff7f50; /* Coral color */
}

.right-side {
    transform: rotate(45deg);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    border: 5px solid #6c757d;
    border-left-color: #eee;
    border-bottom-color: #eee;
    animation: rotateSideRight 1s infinite ease-in-out;
}

.player-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #ff7f50; /* Coral color */
    font-weight: 700;
    font-size: 20px;
}

.player-title {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(50% + 55px);
    text-align: center;
    color: #999;
}

.loading-text {
    font-size: 18px;
    color: #ff7f50; /* Coral color */
    font-weight: bold;
    text-align: center;
    margin-top: 10px;
}

/* Infinite rotation animations */
@keyframes rotateLoader {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateSideLeft {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg); /* Rotating 360 degrees */
    }
}

@keyframes rotateSideRight {
    0% {
        transform: rotate(45deg);
    }
    100% {
        transform: rotate(405deg); /* Rotating 360 degrees */
    }
}

/* loading screen loader end */

#loading-screen-main {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
    background: #f0f0f0;
    z-index: 9999;
}

.loader {
    border: 10px solid #f3f3f3; /* Light gray */
    border-top: 10px solid #FF5733; /* Coral orange */
    border-radius: 50%;
    width: 90px;
    height: 90px;
    animation: spin 0.5s linear infinite;
}

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

.loading-text {
    margin-top: 15px;
    font-size: 1.2rem;
    color: #FF5733; /* Coral orange */
}

.login-box {
    background: url("img/8.png");
    background-size: cover;
    background-position: center;
    padding: 50px;
    margin: 3% auto;
    height: 90vh;
    /* -webkit-box-shadow: 0 2px 60px -5px rgba(0, 0, 0, 0.1); */
    box-shadow: 0 2px 60px -5px rgba(0, 0, 0, 0.1);
}

.logo {
    font-family: "Script MT";
    font-size: 54px;
    text-align: center;
    color: #888888;
    /* margin-bottom: 50px; */
}

.logo .logo-font {
    color: #3BC3FF;
}

/* @media only screen and (max-width: 767px) {
        .logo {
            font-size: 34px;
        }
    } */

.header-title {
    text-align: center;
    margin-bottom: 50px;
}

.login-form {
    max-width: 380px;
    margin: 0 auto;
}

.login-form .form-control {
    border-radius: 10px;
    margin-bottom: 30px;
}

.login-form .form-group {
    position: relative;
}

.login-form .form-group .forgot-password {
    position: absolute;
    top: 6px;
    right: 15px;
}

.login-form .btn {
    border-radius: 10px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.login-form .btn.btn-primary {
    background: #3BC3FF;
    border-color: #31c0ff;
}

.slider-feature-card {
    background: #fff;
    max-width: 280px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
    -webkit-box-shadow: 0 2px 25px -3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 25px -3px rgba(0, 0, 0, 0.1);
}

.slider-feature-card img {
    width: 50%;
    border: none;
    border-radius: 50px;
}

.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li {
    cursor: pointer;
}

body {
    
    background-size: 40vmin;
    background-repeat: no-repeat;
    background-position: center 25%;
    height: 60rem;
    overflow: hidden;
    margin: 0;
}

.progress {
    width: 350px;
    max-width: 85vw;
    height: 1vw;
    position: absolute;
    bottom: 40%;
    left: 50%;
    border-radius: 4px;
    background: rgb(193 193 193 / 50%);
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.progress:after {
    content: '';
    display: block;
    width: 100%;
    background: #6c757d;
    animation: load 20s linear;
}

@keyframes load {
    0% {
        width: 0;
    }

    10% {
        width: 5%;
    }

    20% {
        width: 15%;
    }

    30% {
        width: 25%;
    }

    40% {
        width: 30%;
    }

    50% {
        width: 44%;
    }

    60% {
        width: 50%;
    }

    70% {
        width: 72%;
    }

    80% {
        width: 84%;
    }

    90% {
        width: 92%;
    }

    100% {
        width: 100%;
    }
}

.custom-modal-lg {
    max-width: 40%;
}

.modal-content {
    border: none;
    border-radius: 10px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
    color: #000000;
}

.modal-header {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: none;
    background-color: #343a40;
    color: white;
}

.modal-body {
    padding: 30px;
}

.modal-footer {
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    border-top: none;
}

.otp-input {
    width: 100%;
    padding: 15px;
    font-size: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
    text-align: center;
    background-color: #fff;
    color: #333;
}

.modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%; 
}

.activation-message {
    width: 460px;
    max-width: 85vw;
    height: 30px;
    position: absolute;
    bottom: 30%;
    left: 60%;
    font-size: 14px;
    color: #625855;
    font-weight: bold;
    transform: translate(-50%, -50%);
}
