@import url("https://fonts.googleapis.com/css2?family=Nunito:wght@200;300;400;500;600;700&display=swap");
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: "nunito";
    overflow-y: hidden;
}

.container {
    width: 80%;
    margin: auto;
    padding: 20px;
    height: 100%;
}

.login {
    width: 50%;
}

.register {
    width: 50%;
}


/*Start Login Style*/

.login {
    float: left;
    background-color: #fff;
    height: 100%;
    border-radius: 10px 0 0 10px;
    text-align: center;
}

.login h1 {
    margin-bottom: 0px;
    margin-top: 0px;
    font-size: 2.5em;
    color: #0a294f;
}

input[type="email"],
input[type="password"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: none;
    background-color: #eeeeef;
    border-radius: 5px;
}

input[type="checkbox"] {
    float: left;
    margin-right: 5px;
    margin-top: 2px;
}

.login span {
    float: left;
}

.login a {
    float: right;
    text-decoration: none;
    color: #333;
    transition: 0.3s all ease-in-out;
}

.login button {
    width: 50%;
    margin: 50px 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 hr {
    margin-top: 5px;
    width: 10%;
    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:last-child {
    margin-right: 0;
}

.login .copyright {
    display: inline-block;
    float: none;
}


/*Start Register Style*/

.register {
    float: right;
    background-image: url(./BackgroundN.jpg);
    height: 100%;
    color: #fff;
    border-radius: 0;
    text-align: right;
    padding: 100px 0;
}

.register h2 {
    margin: 30px 0;
    font-size: 2rem;
    letter-spacing: 3px;
}

.register p {
    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;
}

.box {
    margin-top: 20px;
    width: 507px;
    height: 44px;
    background-color: #eeeeee;
    margin-bottom: 30px;
    border-radius: 5px;
}

.name {
    display: flex;
    justify-content: space-around;
}

input[type="email"],
input[type="password"],
input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background-color: #eeeeef;
    border-radius: 5px;
}

.name input[type="text"] {
    width: 50%;
    padding: 10px;
    margin-bottom: 10px;
    border: none;
    background-color: #eeeeef;
}

input[type="submit"] {
    width: 60%;
    margin-top: 30px;
    padding: 10px;
    border: none;
    border-radius: 10px;
    background-color: #a72d38;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.3s all ease-in-out;
}

.box {
    position: relative;
    z-index: 2;
}

.login ul li a {
    margin-top: 10px;
    margin-right: 5px;
}

.vector img {
    width: 10px;
    height: 10px;
    visibility: hidden;
}

.resp-img img {
    display: none;
}

li:first-child a {
    color: white;
}

.highlighter {
    position: absolute;
    width: 140px;
    background-color: #a72d38;
    height: 44px;
    border-radius: 5px;
    z-index: -1;
}

@media (max-width: 768px) {
    .register {
        display: none;
    }
    .login {
        width: 100%;
        min-height: 100vh;
        padding-top: 100px;
    }
    .login h1 {
        margin-top: 50px;
        margin-bottom: 10px;
        font-size: 1.5em;
        color: #0a294f;
        z-index: 101010;
    }
    .vector img {
        visibility: visible;
        position: absolute;
        top: 0%;
        left: 0%;
        width: 460px;
        height: 150px;
    }
    .resp-img img {
        width: 70px;
        height: 50px;
        position: absolute;
        top: 2%;
        left: 7%;
        display: flex;
        z-index: 10;
    }
    .box {
        margin-top: 20px;
        width: 260px;
        height: 35px;
        background-color: #eeeeee;
        margin-bottom: 30px;
        border-radius: 5px;
    }
    .login ul li a {
        font-size: 10px;
        margin-top: 9px;
        margin-right: -15px;
    }
    .login a {
        font-size: 12px;
    }
    .highlighter {
        position: absolute;
        width: 70px;
        height: 35px;
        border-radius: 5px;
        z-index: -1;
    }
    li:first-child a {
        color: white;
    }
    span {
        font-size: 12px;
    }
    input[type="submit"] {
        width: 100%;
        margin-top: 30px;
        padding: 10px;
        border: none;
        border-radius: 10px;
        background-color: #a72d38;
        color: #fff;
        font-size: 20px;
        cursor: pointer;
        transition: 0.3s all ease-in-out;
    }
}