* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

.div1 {
    width: 60%;
    height: 100%;
    float: left;
    background-image: url("../images/background.jpg");
    opacity: 0.88;
}

.div1 form {
    height: 600px;
    padding-left: 70px;
    padding-top: 30px;
    margin-top: 50px;
}

.div1 form h3 {
    color: #FFF;
    font-weight: bold;
    font-size: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.div1 form input[type=text],
.div1 form input[type=password] {
    width: 40%;
    background-color: transparent;
    border: none;
    border-bottom: 3px solid rgb(255, 255, 255);
    padding: 12px;
    border-radius: 6px;
    color: black;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.div1 form input[type=text]:focus,
.div1 form input[type=password]:focus {
    box-shadow: 5px 5px 35px 5px rgb(255, 255, 255);
}

.div1 form .f-password {
    width: 40%;
    padding: 15px 77px;
    margin-top: 30px;
    color: #FFF;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.div1 form a:hover {
    color: rgb(214, 214, 214);
}

.div1 form a:active {
    color: rgb(75, 75, 75);
}

.div1 form input[type=submit] {
    width: 40%;
    padding: 15px;
    margin-top: 20px;
    background-color: rgb(89, 95, 255);
    color: #FFF;
    font-weight: bold;
    letter-spacing: 1px;
    border: none;
    border-radius: 5px;
}

.div1 form input[type=submit]:hover {
    cursor: pointer;
    background-color: rgb(93, 135, 214);
}

.div1 form span {
    margin-top: 50px;
    color: #FFF;
    letter-spacing: 1.7px;
    font-size: 14px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.div1 form .here {
    text-decoration: none;
    color: #FFF;
    margin-top: 40px;
    padding: 6px 15px;
    font-size: 17px;
    font-weight: bold;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.div1 .copyright {
    text-align: right;
    color: #FFF;
    letter-spacing: 1.4px;
    padding-right: 10px;
    text-transform: uppercase;
    font-size: 11px;
}

.div2 {
    width: 40%;
    height: 100%;
    float: right;
    background-color: rgb(89, 95, 255);
}

.div2 h1 {
    margin: 200px auto;
    padding-left: 70px;
    font-size: 50px;
    color: #FFF;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

@media(max-width:767px) {
    .div2 {
        width: 100%;
        height: 7%;
        top: 0%;
        left: 0;
    }
    .div2 h1 {
        margin: 10px auto;
        font-size: 24px;
        text-align: center;
    }
    .div1 {
        margin-top: 0;
        width: 100%;
        height: 93%;
    }
    body {
        background: url("../images/background.jpg");
    }
    .div1 form {
        text-align: center;
    }
    .div1 form h3 {
        font-size: 28px;
    }
    .div1 form input[type=text],
    .div1 form input[type=password] {
        width: 80%;
        padding: 12px;
        color: #FFF;
    }
    .div1 form input[type=submit] {
        width: 80%;
    }
    .div1 .copyright {
        clear: both;
        text-align: center;
        font-size: 11px;
        margin-bottom: 7%;
    }
}