﻿@import "site.css";

body {
    font-family: 'Roboto', sans-serif;
}

@font-face {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: normal;
    src: url('fonts/to/Roboto.eot');
    src: local('Roboto'), local('Roboto'), url('fonts/') format('truetype');
}

a {
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
}

.content-box {
    display: flex;
    flex-direction: column;
}

.left-side {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--green-600);
}

.right-side {
    display: flex;
    align-items: center;
    justify-content: center;
    /*  height: 764px;*/
    min-height: 700px;
    padding: 20px;
}

form h2 {
    font-weight: 700;
    font-size: 20px;
    line-height: 32px;
    color: white;
}

form h3 {
    margin-top: 40px;
    color: var(--green-dark);
}

.wrap-box {
    position: relative;
    /*padding-top: 65px;*/
}

.right-side .form-content {
    margin-top: 2rem;
}

.right-side form {
    max-width: 436px;
    width: 100%;
}

form input[type="text"],
form input[type="password"],
form input[type="email"] {
    display: block;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 14px;
    color: var(--clr-grey);
    padding: 13px 12px;
    padding-right: 51px !important;
    border: 1px solid var(--bordercolor);
    border-radius: 8px;
    margin-bottom: 14px;
}

.input-container.password {
    margin-top: 30px;
}

label {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    font-size: 15px;
    line-height: 20px;
    color: var(--clr-black-blue);
    margin-bottom: .5rem;
}

.input-container {
    position: relative;
}

    .input-container i {
        position: absolute;
        top: 43px;
        right: 20px;
        font-size: 16px;
        color: var(--clr-grey);
        cursor: pointer;
    }

    .input-container.forget {
        display: flex;
        justify-content: space-between;
    }

        .input-container.forget a {
            font-weight: 500;
            font-size: 11px;
            line-height: 20px;
        }

.checkbox-content {
    position: relative;
    display: block;
    font-weight: 400;
    font-size: 18px;
    line-height: 20px;
    padding-left: 1.6rem;
    cursor: pointer;
    user-select: none;
    margin: 0 0 1.25rem 0;
}

    .checkbox-content input {
        position: absolute;
        opacity: 0;
        width: 0;
        height: 0;
        cursor: pointer;
    }

        .checkbox-content input ~ checked .checkmark {
            background: white;
            border: 1px solid var(--bordercolor);
        }

.checkmark {
    position: absolute;
    background: white;
    width: 16px;
    height: 16px;
    border-radius: 3px;
    top: 1px;
    left: 0;
    border: 1px solid var(--bordercolor);
}

    .checkmark::after {
        content: "";
        position: absolute;
        display: none;
    }

.checkbox-content input:checked ~ .checkmark::after {
    display: block;
}

.checkbox-content .checkmark::after {
    border: 1px solid var(--bordercolor);
    border-width: 0 4px 4px 0;
    border-color: var(--green-600);
    height: 9px;
    width: 4px;
    left: 3px;
    top: -1px;
    transform: rotate(45deg);
}

.signup-btn {
    display: block;
    margin-top: 20px;
    width: 100%;
    padding: 7px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
    transition: .3s;
    font-size: 18px;
    cursor: pointer;
    color: var(--green-600);
}

    .signup-btn:hover {
    }

.playstore {
    /*margin-top: 2.5rem;*/
    position: absolute;
    bottom: -70px;
}

    .playstore img {
        margin-left: -2px;
        cursor: pointer;
        width: 154px;
    }

.logo-img {
    position: absolute;
    top: 20px;
    left: 0px;
    max-width: 224px;
    width: 100%;
}

.vector-img {
    position: absolute;
    top: 0;
    right: 0;
    width: 35px;
    height: auto;
}

.bottom-logo-img {
    position: absolute;
    bottom: 0;
    width: 252px;
    height: auto;
}

@media (min-width: 1200px ) {
    .right-side form {
        max-width: 433px !important;
    }
}

@media (min-width: 1024px ) {
    .right-side form {
        max-width: 400px;
    }
}

@media (min-width: 767px) {
    .content-box {
        flex-direction: row;
        padding: 0;
        min-height: 100vh;
    }

    .left-side, .right-side {
        position: relative;
        width: 50%;
    }

    .right-side {
        padding: 0 30px;
        /*height: 100vh;
        min-height: 700px;*/
    }

    .checkbox-content {
        font-size: 15px;
    }

    .input-container.forget a {
        font-size: 15px;
        color: var(--green-light);
    }

    .right-side form {
        max-width: 368px;
    }

    form h2 {
        font-size: 21px;
        line-height: 30px;
        color: var(--green-dark);
    }

    form h3 {
        font-weight: 400;
        font-size: 20px;
    }

    .signup-btn {
        margin-top: 30px;
        padding: 10px 20px;
        background: var(--green-600);
        color: white;
    }

        .signup-btn:hover {
            background: white;
            color: var(--green-600);
            border: 2px solid var(--green-600);
        }
}

@media (max-width: 767px) {
    form h3,
    .email label,
    .password label,
    .wrap-box h3,
    .checkbox-content {
        color: white;
    }

    .right-side {
        height: 764px;
    }

    .wrap-box {
        transform: translateY(10%);
        padding-top: 0 !important;
    }

    .input-container.forget a {
        font-size: 15px;
    }

    form h3 {
        font-size: 22px;
        margin-top: 35px;
    }

    .email label,
    .password label,
    .checkbox-content {
        font-size: 16px;
    }

    .wrap-box h3 {
        font-size: 20px;
    }

    form input[type="text"],
    form input[type="password"],
    form input[type="email"] {
        height: 52px;
    }

    .input-container i {
        top: 46px;
        font-size: 18px;
    }

    .signup-btn {
        padding: 12px 7px;
        background: white;
    }
}

@media (max-width: 425px) {
    .wrap-box {
        transform: translateY(0);
    }

    .playstore {
        margin-top: 0;
        bottom: -120px;
        position: absolute;
    }

    .signup-btn {
        padding: 10px 7px;
    }

    form h2 {
        font-size: 18px;
    }

    .checkbox-content, .input-container.forget a {
        font-size: 13px;
    }

    form input[type="text"], form input[type="password"], form input[type="email"] {
        height: 45px;
    }

    .playstore img {
        width: 130px;
    }

    .input-container i {
        top: 44px;
        font-size: 17px;
    }
}
