﻿header.fixed-top {
    box-shadow: 0 3px 10px rgb(0 0 0 / 10%);
    background-color: #fff;
}

body {
    background-image: url('https://d1i3enf1i5tb1f.cloudfront.net/assets/Tailor-made/homepage-bg.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    width: 100%;
    height: 100vh;
}

.homepage {
    width: 100%;
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 50px;
}

.logomain img {
    height: auto;
    max-height: 60px;
    width: auto;
}

.loginbox {
    width: 800px;
    background-color: #fff;
    display: flex;
    column-gap: 50px;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,6%);
}

.content-left {
    display: flex;
    flex-direction: column;
    row-gap: 40px;
}

    .content-left h3 {
        font-size: 20px;
        font-weight: 600;
        position: relative;
        padding-bottom: 10px;
    }

.loginbox > div {
    flex: 1;
}

.content-left h3::after {
    content: '';
    height: 4px;
    width: 40px;
    background-color: var(--bg1);
    display: flex;
    margin-top: 8px;
    border-radius: 4px;
}

.content-right {
    display: flex;
    flex-direction: column;
    row-gap: 50px;
}

    .content-right h3 {
        font-size: 20px;
        font-weight: 600;
        text-align: center;
    }

.login-form {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
}

    .login-form .input-bx input {
        border: 1px solid #eee;
        height: 48px;
        width: 100%;
        padding: 0 15px;
        padding-right: 50px;
        border-radius: 8px;
        margin-bottom: 0;
    }

    .login-form .form-group {
        display: flex;
        flex-direction: column;
        row-gap: 8px;
    }

        .login-form .form-group label {
            font-size: 12px;
        }

.login-btn {
    width: 100%;
    text-transform: uppercase;
}

.usericon {
    height: 20px;
    width: 18px;
    position: absolute;
    right: 15px;
    top: 15px;
    background-position: -112px 0px;
}

.password-more {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 15px;
}

    .password-more a {
        color: var(--color1);
        font-weight: 400;
    }

.sbmit-btn {
    width: 100%;
    margin-top: 15px;
}

.btn_login {
    position: relative;
}

.image_wrap {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    background-color: var(--bg1);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sign-up-row {
    display: flex;
    gap: 5px;
    justify-content: center;
}

.signup-btn {
    color: var(--color1);
    font-weight: 400;
}

@media (min-width:1400px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
        max-width: 1170px;
    }
}

@media(max-width:991px) {
    .loginbox {
        width: 90%;
        flex-direction: column;
        margin-top: 50px;
        padding: 20px;
    }

    .content-left {
        display: none;
    }

    .content-right {
        row-gap: 25px;
    }
}
