* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a.bt-margin {
    color: #000;
    font-family: sans-serif;
    /* margin-top: 0px; */
}

a.color-change {
    color: #3F0F3F;
    font-family: sans-serif;
    font-weight: 700;
}

.horizon-line {
    height: 1px;
    width: 100%;
    background: #dee2e6;
    margin-top: 11px;
}

.container {
    width: 100%;
    max-width: 100%;
    margin: 0px auto;
    padding-left: 15px;
    padding-right: 15px;
}

.log-sec {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.log-form {
    height: 400px;
    background-color: #fff;
}

.form-content {
    width: 100%;
    max-width: 500px;
    margin: 30px auto;
    padding: 15px;
}

.form-head img {
    height: auto;
    margin-bottom: 30px;
    width: 100px;
}

.log-desk h3 {
    font-size: 23px;
    font-weight: 700;
    font-family: sans-serif;
    font-style: normal;
    line-height: 44px;
}

.log-desk p {
    color: #475056;
    font-size: 15px;
    line-height: 24px;
    font-family: sans-serif;
}

.form-group {
    height: auto;
    display: flex;
    flex-direction: column;
    margin: 11px auto;
}

.form-group label {
    font-size: 15px;
    font-family: sans-serif;
    font-weight: 500;
    margin: 10px 0px;
    color: #475056;
}

.form-group input[type="email"] {
    width: 100%;
    padding: 10px;
    border-bottom: 5px;
    border: 1px solid #c2c5c7;
    border-radius: 5px;
    color: #262c30;
    font-family: sans-serif;
}

.form-group input[type="password"] {
    width: 100%;
    padding: 10px;
    border-bottom: 5px;
    border: 1px solid #c2c5c7;
    border-radius: 5px;
    color: #262c30;
    font-family: sans-serif;
}

.form-content button {
    padding: 10px;
    width: 100%;
    border: none;
    background: #3F0F3F;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    font-family: sans-serif;
    border-radius: 10px;
    margin: 10px auto;
    margin-bottom: 27px;
}

.form-content button:hover {
    background-color: #5a2c5a;
    cursor: pointer;
}

.social-tag {
    width: 100%;
    text-align: left;
}

.inner-media {
    height: auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.company-logo {
    background-color: #0a66c2;
    text-align: center;
    padding: 10px;
    align-items: center;
    border-radius: 5px;
}

.company-logo:nth-child(2) {
    background-color: #f5f5f6;
}

.company-logo:nth-child(3) {
    background-color: #000;
}

.social-tag h4 {
    font-size: 15px;
    font-weight: 700;
    font-family: sans-serif;
    line-height: 48px;
    color: #475056;
    margin-bottom: 10px;
}

.log-form-img {
    height: 100vh;
    background-color: #f9fafb;
    position: relative;
}

.img-sec {
    width: 100%;
    /* height: 100%; */
    max-width: 500px;
    margin: 231px auto;
}

.img-sec img {
    width: 100%;
    max-width: 100%;
}


/* register page css start */

.form-group input[type="text"] {
    width: 100%;
    padding: 10px;
    border-bottom: 5px;
    border: 1px solid #c2c5c7;
    border-radius: 5px;
    color: #262c30;
    font-family: sans-serif;
}

.form-group input:hover {
    border-color: #70777b;
}

.checkbox {
    display: flex;
    margin: 25px auto;
}

input[type="checkbox"] {
    height: 20px;
}

.checkbox p {
    font-weight: 100;
    padding-left: 16px;
    line-height: 21px;
    margin-bottom: 0px;
    color: #333c43;
}

.img-sec.register-img {
    margin: 0px auto;
}

.register-img img {
    width: 100%;
    max-width: max-content;
    margin: 100px auto;
    position: relative;
}

/* Leader box */
.leader {
    height: 358px;
    width: 25%;
    background-color: #2693f8;
    position: absolute;
    top: 177px;
    left: 56px;
    overflow: hidden;
    border-radius: 10px;
}

/* Slick slider styles */
.slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider .slide {
    position: relative;
    width: 100%;
    /* Ensures slides take full width of the container */
    height: 100%;
    /* Ensures slides take full height of the container */
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider .caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: white;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 10px;
    max-width: 80%;
    /* To ensure the caption does not overflow */
    font-size: 16px;
    /* Adjust as needed */
}

.slider img {
    width: 100%;
    /* Make sure images take up full width of the container */
    height: 100%;
    /* Make sure images take up full height of the container */
    object-fit: cover;
    /* Ensures the image covers the area without stretching */
    border-radius: 10px;
    /* Optional: adds rounded corners to images */
}




/* Responsive css start */

@media(max-width:993px) {
    .register-img img {
        display: none;
    }
}


@media (max-width:767px) {
    .log-sec {
        grid-template-columns: repeat(1, 1fr);
        margin: 0px auto;
    }

    .log-form-img {
        display: none;
    }

    .form-group input[type="email"] {
        width: 100%;
    }

    .form-group input[type="password"] {
        width: 100%;
    }

    .form-content button {
        width: 100%;
    }

    .social-tag h4 {
        text-align: center;
    }

    .company-logo {
        padding: 7px;
    }

    .form-head {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .log-desk {
        text-align: center;
    }
}

@media (max-width:576) {
    .form-content {
        width: 100%;
    }
}