@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Acme&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
    background: #fff;
}

a {
    text-decoration: none;
}

:root {
    --black: #000;
    --white: #fff;
    --red: #dc0606;
    --pink: #fa96f8;
    --green: #2aa06a;
    --bg: #eceaea;
    --bg-2: #d9d6ce;
    --btn: #8bcde0;
    --btn3: rgb(152, 187, 171);
    --grey: rgb(116, 116, 116);
}

::-webkit-scrollbar {
    width: 0.8rem;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--white);
    border-radius: 0.8rem;
    border: 0.2rem solid transparent;
    background-clip: content-box;
}

/* ****************************
            header
    *******************************/
.navbar {
    height: 70px;
    width: 100%;
    padding: 19px 30px;
    background-color: var(--black);
    position: relative;
}

.nav-logo h1 {
    color: var(--white);
    font-size: 32px;
    transform: translateY(5px);
}

.navbar .nav-header {
    display: inline;
}

.navbar .nav-header .nav-logo {
    display: inline-block;
    margin-top: -7px;
}

.navbar .nav-links {
    display: inline;
    float: right;
    font-size: 18px;
}

.navbar .nav-links .loginBtn {
    display: inline-block;
    padding: 3px 10px;
    margin-left: 20px;
    font-size: 17px;
    color: var(--black);
    transition: 1s;
}

.navbar .nav-links .searchBtn {
    display: inline-block;
    padding: 3px 10px;
    margin-left: 20px;
    font-size: 17px;
    color: var(--black);
    transition: 1s;
}

.navbar .nav-links .cartBtn {
    display: inline-block;
    padding: 3px 10px;
    margin-left: 5px;
    font-size: 17px;
    color: var(--black);
    transition: 1s;
}

.navbar .nav-links a {
    padding: 10px 12px;
    text-decoration: none;
    font-weight: 550;
    color: var(--white);
}

.navbar .nav-links a:hover {
    background-color: var(--black);
}

.navbar #nav-check,
.navbar .nav-btn {
    display: none;
}

@media (max-width:700px) {
    .navbar .nav-btn {
        display: inline-block;
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .navbar .nav-btn label {
        display: inline-block;
        width: 80px;
        height: 70px;
        padding: 25px;
    }

    .navbar .nav-btn label span {
        display: block;
        height: 10px;
        width: 25px;
        border-top: 3px solid var(--white);
    }

    .navbar .nav-btn label:hover,
    .navbar #nav-check:checked~.nav-btn label {
        background-color: var(--black);
        transition: all 0.5s ease;
    }

    .navbar .nav-links {
        position: absolute;
        display: block;
        text-align: center;
        width: 50%;
        background-color: var(--black);
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 70px;
        right: 0px;
    }

    .navbar .nav-links a {
        display: block;
    }

    .navbar #nav-check:not(:checked)~.nav-links {
        height: 0px;
    }

    .navbar #nav-check:checked~.nav-links {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .navbar .nav-links .loginBtn {
        padding: 10px 15px;
        margin: 20px;
        font-size: 18px;
        font-weight: bold;
        color: var(--black);
        transition: 1s;
    }

    .navbar .nav-links .dropdown,
    .navbar .nav-links .dropdown2 {
        float: none;
        width: 100%;
    }

    .navbar .nav-links .drop-content,
    .navbar .nav-links .drop-content2 {
        position: relative;
        background-color: var(--black);
        top: 0px;
        left: 0px;
    }

    .navbar .nav-links .drop-content a {
        color: var(--white);
    }

}

.dropdown {
    position: relative;
    display: inline-block;
}

.drop-content,
.drop-content2 {
    display: none;
    position: absolute;
    background-color: var(--black);
    min-width: 120px;
    font-size: 16px;
    top: 34px;
    z-index: 1;
    box-shadow: 0px 10px 25px var(--black);
}

.dropdown:hover .drop-content,
.dropdown2:hover .drop-content2 {
    display: block;
}


.drop-content a {
    padding: 12px 10px;
    border-bottom: 1px solid var(--white);
    display: block;
    transition: all 0.5s ease !important;
}

.dropBtn .drop-content a:hover {
    background-color: var(--white);
}

.dropdown:hover .dropBtn,
.dropdown2:hover .dropBtn2 {
    background-color: var(--white);
}

.dropdown2 .drop-content2 {
    position: absolute;
    left: 120px;
    top: 126px;
}

.dropBtn2 i {
    margin-left: 15px;
}

.loginBtn:hover {
    color: var(--white) !important;
    background-image: linear-gradient(rgb(173, 172, 172), rgb(54, 54, 54));
}

.searchBtn:hover {
    color: var(--white) !important;
    background-image: linear-gradient(rgb(173, 172, 172), rgb(54, 54, 54));
}

.cartBtn:hover {
    color: var(--white) !important;
    background-image: linear-gradient(rgb(173, 172, 172), rgb(54, 54, 54));
}

@media (max-width:1024px) {
    .navbar .nav-btn {
        display: inline-block;
        position: absolute;
        top: 0px;
        right: 0px;
    }

    .navbar .nav-btn label {
        display: inline-block;
        width: 80px;
        height: 70px;
        padding: 25px;
    }

    .navbar .nav-btn label span {
        display: block;
        height: 10px;
        width: 25px;
        border-top: 3px solid var(--white);
    }

    .navbar .nav-btn label:hover,
    .navbar #nav-check:checked~.nav-btn label {
        background-color: var(--black);
        transition: all 0.5s ease;
    }

    .navbar .nav-links {
        position: absolute;
        display: block;
        text-align: center;
        width: 50%;
        background-color: var(--black);
        transition: all 0.3s ease-in;
        overflow-y: hidden;
        top: 70px;
        right: 0px;
    }

    .navbar .nav-links a {
        display: block;
    }

    .navbar #nav-check:not(:checked)~.nav-links {
        height: 0px;
    }

    .navbar #nav-check:checked~.nav-links {
        height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .navbar .nav-links .loginBtn {
        padding: 10px 15px;
        margin: 20px;
        font-size: 18px;
        font-weight: bold;
        color: var(--black);
        transition: 1s;
    }

    .navbar .nav-links .dropdown,
    .navbar .nav-links .dropdown2 {
        float: none;
        width: 100%;
    }

    .navbar .nav-links .drop-content,
    .navbar .nav-links .drop-content2 {
        position: relative;
        background-color: var(--black);
        top: 0px;
        left: 0px;
    }

    .navbar .nav-links .drop-content a {
        color: var(--white);
    }

}

@media (min-width: 320px) and (max-width: 768px) {
    .navbar .nav-links .loginBtn {
        padding: 3px 10px;
        margin-left: 10px;
        font-size: 17px;
    }

    .navbar .nav-links .searchBtn {
        padding: 3px 10px;
        margin-left: 25px;
        font-size: 17px;
    }

    .navbar .nav-links .cartBtn {
        padding: 3px 10px;
        margin-left: 5px;
        font-size: 17px;
    }

    .nav-logo h1 {
        font-size: 22px;
        transform: translateY(5px);
    }
}

h2,
h3,
h4 {
    font-family: 'Acme', sans-serif;
    color: #fff;
}

::placeholder {
    color: rgba(255, 255, 255, .5);
    opacity: 1;
}

/* ****************************
            product
    *******************************/
button {
    cursor: pointer;
}

.form-container {
    width: 1000px;
    height: 580px;
    position: absolute;
    border-radius: 10px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, .15);
    background: #fff;
    display: flex;
    overflow: hidden;
}

.form-inner-left {
    position: relative;
    width: 50%;
    height: 100%;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), rgba(0, 0, 0, .85)), url("../images/img13.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
}

.form-inner-right {
    padding: 0 40px;
    position: relative;
    width: 50%;
    background: #272f2a;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.left-content {
    text-align: center;
}

.left-content h2 {
    font-size: 40px;
    letter-spacing: .5px;
    margin-bottom: 10px;
    font-weight: 500;
    text-shadow: 1px 1px rgba(0, 0, 0, .15);
}

.left-content p {
    font-size: 18px;
    color: #fff;
}

.form-inner h3 {
    font-size: 30px;
    text-align: center;
    letter-spacing: .5px;
}

.form {
    margin-top: 40px;
}

.input-box {
    width: 100%;
    margin-bottom: 20px;
    background: transparent;
    border: none;
    outline: none;
    padding: 13px 15px;
    border-radius: 5px;
    font-size: 16px;
    color: #fff;
}

.gray-border {
    border: 1px solid rgba(255, 255, 255, .5);
}

.green-border {
    border: 1px solid #00727f;
}

.green-bg {
    background: #00727f;
    ;
}

/* Create a custom checkbox */
.check-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 20px;
    cursor: pointer;
    font-size: 15px;
    font-family: 'Roboto Condensed', sans-serif;
    color: rgba(255, 255, 255, .75);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.check-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 22px;
    width: 22px;
    background-color: #eee;
    border-radius: 5px;
}

.check-container:hover input~.checkmark {
    background-color: #ccc;
}

.check-container input:checked~.checkmark {
    background-color: #00727f;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.check-container input:checked~.checkmark:after {
    display: block;
}

.check-container .checkmark:after {
    left: 8px;
    top: 8px;
    width: 4px;
    height: 7px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.for-text {
    text-align: right;
}

.anch-text {
    color: #00727f;
    text-decoration: none;
}

.or-text {
    position: relative;
    text-align: center;
    margin: 20px 0;
    color: rgba(255, 255, 255, .5);
}

.or-text:before,
.or-text:after {
    content: '';
    position: absolute;
    top: 50%;
    width: 38%;
    height: 1px;
    background: rgba(255, 255, 255, .5);
}

.or-text:before {
    left: 0;
}

.or-text:after {
    right: 0;
}

.social-box {
    list-style: none;
    display: flex;
    justify-content: center;
}

.social-link {
    display: block;
    width: 46px;
    height: 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, .5);
    margin: 0 20px;
    text-decoration: none;
    color: rgba(255, 255, 255, .5);
    transition: .5s all;
}

.social-link:hover {
    border-color: #00727f;
    color: #fff;
}

.signup-text {
    text-align: center;
    color: rgba(255, 255, 255, .5);
    margin-top: 30px;
}

/*mobile or small screen*/
@media (min-width: 320px)and (max-width: 767px) {
    .form-container {
        width: 340px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -20%);
    }

    .form-inner-left {
        display: none;
    }

    .form-inner-right {
        width: 100%
    }

    .or-text:before,
    .or-text:after {
        width: 30%;
    }
}

@media (min-width: 768px)and (max-width: 1440px) {
    .form-container {
        width: 1000px;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -20%);
    }
}
