      body {
    margin: 0;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.9)),
        url('../images/bg.jpg') no-repeat center center/cover;
    font-family: Arial, sans-serif;
    overflow: hidden; /* Prevents scrolling */
}

.login-form-bg {
    position: relative;
    width: 100%;
    height: 100%; /* Ensures it spans the full viewport height */
    display: flex;
    justify-content: center;
    align-items: center;
}

.card {
    position: absolute; /* Fix the card's position relative to its parent */
    top: 50%; /* Center vertically */
    left: 50%; /* Center horizontally */
    transform: translate(-50%, -50%); /* Adjusts for accurate centering */
    z-index: 2; /* Keeps it above other elements */
    width: 100%; /* Mobile-first responsive width */
    max-width: 400px; /* Restricts size for smaller screens */
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    padding: 20px; /* Adds inner spacing */
}
/* Adjust Card Size for Larger Screens */
@media (max-width: 768px) {
    .card {
        max-width: 800px; /* Wider cards for tablets and desktops */
        padding: 4px; /* Increased spacing for larger layouts */
    }
}
/* Adjust Card Size for Larger Screens */
@media (min-width: 768px) {
    .card {
        max-width: 800px; /* Wider cards for tablets and desktops */
        padding: 9px; /* Increased spacing for larger layouts */
    }
}

@media (min-width: 1200px) {
    .card {
        max-width: 900px; /* Extra-large card for bigger desktops */
        padding: 9px;
    }
}

.card-body {
    padding: 30px; /* Consistent inner spacing */
}

.form-control {
    border-radius: 5px;
    padding: 10px;
}

.btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px;
    border-radius: 5px;
}

.btn:hover {
    background-color: #0056b3;
}

.text-center img {
    margin-bottom: 15px;
}

.login-form__btn {
    letter-spacing: 1.3px;
}
.preloader {
    background-color: #f7f7f7;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999999;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
    margin: 0 auto;
}
.preloader .preloader-circle {
    width: 130px;
    height: 130px;
    position: relative;
    border-style: solid;
    border-width: 2.2px;
    border-top-color: #1cc88a;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent;
    z-index: 10;
    border-radius: 50%;
    -webkit-box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    box-shadow: 0 1px 5px 0 rgba(35, 181, 185, 0.15);
    background-color: #ffffff;
    -webkit-animation: zoom 2000ms infinite ease;
    animation: zoom 2000ms infinite ease;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.preloader .preloader-circle2 {
    border-top-color: #0078ff;
}
.preloader .preloader-img {
    position: absolute;
    top: 50%;
    z-index: 200;
    left: 0;
    right: 0;
    margin: 0 auto;
    text-align: center;
    display: inline-block;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-top: 6px;
    -webkit-transition: 0.6s;
    -o-transition: 0.6s;
    transition: 0.6s;
}
.preloader .preloader-img img {
    max-width: 85px;
    max-height: 85px;
}
.preloader .pere-text strong {
    font-weight: 800;
    color: #dca73a;
    text-transform: uppercase;
}
@-webkit-keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}
@keyframes zoom {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
        -webkit-transition: 0.6s;
        -o-transition: 0.6s;
        transition: 0.6s;
    }
}
