@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import "tailwindcss";


@theme {

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Be Vietnam Pro", sans-serif !important;
}

body {
    background-color: #E3E5DD;
    color: #0E3D56 !important;
    display: grid;
}

/* preloader */
.preloader {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
}

.loader {
    width: 150px;
    height: 150px;
    animation: bounce 1.5s linear infinite;
}

@keyframes bounce {
    0% {
        width: 150px;
        height: 150px;
    } 50% {
        width: 200px;
        height: 200px;
    } 100% {
        width: 150px;
        height: 150px;
    }
}

.btn.btn-primary {
    background: linear-gradient(to right, #ff3921, #fe8d26);
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    cursor: pointer !important;
}

.btn.btn-primary:hover {
    background-color: #ff3921 !important;
}

.btn.btn-secondary {
    background: #083A54 !important;
    border: 0;
    border-radius: 20px;
    padding: 8px 20px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    cursor: pointer !important;
    box-shadow: 4px 4px rgba(0, 0, 0, 0.1);
}

.btn.btn-danger {
    background: #ff1717;
    border: 0;
    border-radius: 20px;
    padding: 8px 20px;
    color: #fff;
    text-transform: uppercase;
    cursor: pointer !important;
}

/* hero section */


::selection {
    background-color: #0E3D56;
    color: #E3E5DD;
}


.logo-img {
    max-width: 100%;
    height: auto;
}


.form-floating .form-control {
    background-color: transparent;
    border: 0;
    border-bottom: 1px solid #0E3D56;
}

.form-floating .form-control:active {
    background-color: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.form-floating .form-control:focus {
    background-color: transparent !important;
    border: none !important;
    border-bottom: 1px solid #0E3D56 !important;
    box-shadow: none !important;
}

.form-floating > input + label:after {
    background-color: transparent !important;
    color: #0E3D56 !important;
}

.form-floating .form-floating > input {
    padding-right: 2.5rem;
}

.position-relative {
    position: relative;
}

.icon-eye {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: #0E3D56;
}

i.bi {
    color: #0E3D56;
    bottom: 30px;
}

.px-5 {
    padding-left: 250px !important;
}