@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap");

/*Start Global Style*/

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #e6e6e6;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "Nunito";
    overflow: hidden;
}

hr {
    color: #fafafa;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    height: 100%;
}

.login,
.register {
    width: 50%;
}


/*Start Login Style*/

.login {
    float: right;
    background-color: #fff;
    height: 100%;
    text-align: center;
    padding-top: 100px;
}

.login h1 {
    margin-bottom: 10px;
    font-size: 2.5em;
    color: #0a294f;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    height: 50px;
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    background-color: #f4f8f7;
    border-radius: 5px;
}

input[type="checkbox"] {
    display: flex;
    align-items: center;
    float: left;
    margin-top: 4px;
    margin-right: 5px;
    margin-left: 5px;
}

input[type="submit"] {
    width: 100%;
    margin: 30px 0;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #a72d38;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.login span {
    float: left;
}

.login a {
    float: right;
    margin-right: 5px;
    text-decoration: none;
    color: #0a294f;
    transition: 0.3s all ease-in-out;
}

.login button {
    width: 80%;
    margin: 15px 0;
    padding: 10px;
    border: none;
    border-radius: 25px;
    background-color: #0a294f;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.login hr {
    width: 30%;
    display: inline-block;
}

.login p {
    display: inline-block;
    margin: 0px 10px 30px;
}

.login ul {
    list-style: none;
    margin-bottom: 40px;
}

.login ul li {
    display: inline-block;
    margin-right: 30px;
    cursor: pointer;
}

.login ul li:hover {
    opacity: 0.6;
}

.login ul li:last-child {
    margin-right: 0;
}

.login .copyright {
    display: inline-block;
    float: none;
}

.register {
    float: left;
    background-image: url(./BackgroundN.jpg);
    height: 100%;
    color: #fff;
    text-align: center;
    padding: 100px 0;
}

.register img {
    display: flex;
    align-items: left;
    width: 70px;
    height: 50px;
}

.register h2 {
    text-align: left;
    margin: 30px 0;
    font-size: 35px;
    letter-spacing: 3px;
}

.register p {
    text-align: left;
    font-size: 20px;
    margin-bottom: 30px;
}

.register button {
    background-color: transparent;
    border: 1px solid #fff;
    border-radius: 20px;
    padding: 10px 20px;
    color: #fff;
    font-size: 20px;
    text-transform: uppercase;
    transition: 0.2s all ease-in-out;
}

.register button:hover {
    color: #9526a9;
    background-color: #fff;
    cursor: pointer;
}

.reg button {
    margin: 0;
    background-color: #a72d38;
    border-radius: 5px;
}

.vector img {
    width: 10px;
    height: 10px;
    visibility: hidden;
}

.register img {
    display: flex;
}

.resp-img img {
    display: none;
}

@media (max-width: 768px) {
    .register {
        display: none;
    }
    .login {
        width: 100%;
    }
    .login h1 {
        margin-top: 80px;
        margin-bottom: 25px;
        font-size: 1.5em;
        z-index: 101010;
    }
    span {
        font-size: 10px;
        margin-top: 3px;
    }
    input[type="checkbox"] {
        display: flex;
        align-items: center;
        float: left;
        margin-top: 0px;
        margin-right: 5px;
        margin-left: 25px;
    }
    .login a {
        font-size: 10px;
        float: right;
        margin-right: 17px;
        text-decoration: none;
        color: #0a294f;
        transition: 0.3s all ease-in-out;
    }
    .login button {
        width: 80%;
        margin-top: 30px;
        margin-right: 9px;
        padding: 10px;
        border: none;
        border-radius: 25px;
        background-color: #0a294f;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: 0.3s all ease-in-out;
    }
    .reg button {
        width: 80%;
        margin-top: 10px;
        margin-right: 9px;
        padding: 10px;
        border: none;
        border-radius: 10px;
        background-color: #a72d38;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: 0.3s all ease-in-out;
    }
    .vector img {
        visibility: visible;
        position: absolute;
        top: 0%;
        left: 0%;
        width: 100%;
        height: 150px;
    }
    .resp-img img {
        width: 70px;
        height: 50px;
        position: absolute;
        top: 2%;
        left: 7%;
        display: flex;
        z-index: 10;
    }
    input[type="checkbox"] {
        display: flex;
        align-items: center;
        float: left;
        margin-top: 4px;
        margin-right: 5px;
        margin-left: 5px;
    }
}