@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* General reset for margin and padding */
body, html {
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

/* Carousel section fixed at the bottom */
#demos {
    /* position: fixed; */
    /* bottom: 0; */
    width: 100%;
    height: 33vh; /* Adjust this value for smaller carousel height */
    margin-bottom: 25px ;
}

/* Owl carousel loop container */
.loop,
.loop-2 {
    height: 100%;
    display: flex;
    align-items: center;
}

/* Carousel images styling - small heights without stretching */
.loop .item img,
.loop-2 .item img {
    height: 220px;
    object-fit: contain; /* Ensures the image fits within the container without being cropped or stretched */
    display: block;
}


.iq-over-black-60:before {
    background:  rgba(0,  0,  0,  0.6);
    content:  "";
    height:  100%;
    left:  0;
    position: absolute;
    top:  0;
    width:  100%;
    z-index: 99;
}

.register {
    position: relative;
}

.login-register {
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
}

.logo {
    padding-top: 5px ;
    margin-bottom: 10px;
}
/* Sign-up section styling */
.login-register {
    text-align: center;
}

/* Sign-up form styling */
.account-boxs {
    background: #fff;
    width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 30px; 
}


.register-login-title {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
}

/* Input group styling */
.input-group,
.subscription-text {
    margin-bottom: 12px;
}

.input-group input {
    padding: 10px;
    background: transparent;
    border-bottom: 1px solid #ccc;
    width: 100%;
}

input[type="text"],input[type="email"]
{
    background: rgba(0, 0, 0, 0);
    border: none;
    outline: none;
    border-bottom: 1px solid #ccc;
}

/* Eye icon in password field */
.password-container {
    position: relative;
}

.fa-eye {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
}

/* Submit button styling */
.btn-warning {
    font-size: 18px;
    min-width: unset;
    margin-left: 24px;
    /* text-transform: uppercase; */
    font-weight: 500;
    line-height: normal;font-weight: 600;
    border: 0;
    align-items: center;
    border-radius: 5px;
    font-size: 20px;
    color: #000;
    min-height: 46px;
    line-height: 46px;
    background-color: #fedd59;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding: 0 16px;
    display: inline-flex;
    min-width: 150px;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.42, 0, 0.58, 1);
    margin-top: 12px;
}

.btn-warning:hover {
    background-color: #e0a800;
}

/* Terms and Conditions styling */
.form-check {
    display: flex;
    align-items: center;
    font-size: 14px;
}

@media only screen and (max-width: 600px) {
    .account-boxs {
        background: #fff;
        width: 300px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        padding: 20px; 
    }
}