* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: #f3f4f9;

}

.container {
    max-width: 1152px;
    width: 100%;
    margin: 0 auto;
}

.left {
    background-color: white;
    width: 450px;
    height: 600px;
    float: left;
    padding: 65px;
}

.right {
    background: url(../images/bg.jpg);
    background-size: cover;
    width: 700px;
    height: 600px;
    float: left;
}

.logo {
    font-family: 'Pacifico', Comic Sans;
    color: #004eff;
    margin-bottom: 30px;
    margin-top: 10px;
    font-size: 35px;
}

.text {
    color: #0c2140;
    font-size: 17px;
    font-weight: bold;
}

.forgotten-password {
    float: right;
    margin-bottom: 40px;
    text-decoration: none;
    font-size: 13px;
}

input {
    width: 100%;
    height: 50px;
    border: 0;
    outline: 0;

}

.text-input {
    border-bottom: 1px solid #f1f2f4;
    background-color: transparent;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;

}

input::placeholder {
    color: #142841;
}

i {
    color: #7c8497;
}

.icon {
    position: relative;
    width: 100%;
    height: 1px;
    top: 35px;
    text-align: right;
    z-index: 0;


}

.submit-input {
    background-image: linear-gradient(90deg, #004eff, #4786ff);
    color: white;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;

}


.submit-input:active {
    box-shadow: 0 0 0 .2rem rgba(71, 134, 255, .2);
    border: 1px solid #a9caff;
}


.submit-input:hover {
    opacity: 0.9;
}

.create-account {
    margin-top: 20px;
    font-size: 14px;
}

a {
    color: #004eff;
}

@media (min-width:1209px) {
    .main {
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }
}

@media (max-width:1208px) {
    .right {
        display: none;
    }

    .left {
        width: 100%;
        height: 100%;
    }

    .container {
        padding: 0;
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        max-width: 100%;

    }

    .logo {
        margin-top: 0;
    }

    body {
        background-color: white;
    }