﻿.row {
    max-width: 900px;
    width: 100%;
    height: 600px;
    background: #fff;
    box-shadow: 5px 5px 10px 1px rgba(0,0,0,0.1);
}

.logo {
    margin: 10px 0;
}

.side-image {
    background-image: url("https://images.unsplash.com/photo-1521898284481-a5ec348cb555?q=80&w=1887&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate( -50%, -50%);
}

.alert {
    background-color: transparent;
    border: none;
    height: 40px;
}

    .alert p {
        font-size: 12px;
        background-color: transparent;
        border: none;
        color: #d90429;
        border-left: 2px solid #d90429;
        border-radius: none;
        padding-left: 13px;
    }

.text p {
    color: #fff;
    font-size: 15px;
}

.right {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.input-field {
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 0 10px 0 10px;
    margin-bottom: 3px;
}

    .input-field label i {
        margin-right: 5px;
        color: #0568A6;
    }

.input {
    height: 40px;
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0,0,0,0.1);
    outline: none;
    margin-bottom: 30px;
    color: #40414a;
}

.input-box .input-field label {
    position: absolute;
    top: 10px;
    left: 10px;
    pointer-events: none;
    transition: .5s;
    font-size: 16px;
    margin-bottom: 5px;
}

.input-field .input:focus ~ label {
    top: -11px;
    font-size: 13px;
}

.input-field .input:valid ~ label {
    top: -11px;
    color: #035AA6;
}

.input-field .input:focus, .input-field .input:valid {
    border-bottom: 2px solid #035AA6;
}

.submit {
    border: none;
    outline: none;
    height: 45px;
    border-radius: 5px;
    transition: .4s;
    background: #068BBF;
    color: #fff;
}

.see-more {
    padding: 2px 4px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    background: transparent;
    color: #6c757d;
}

    .see-more:hover {
        color: #000;
    }

@media only screen and (max-width: 768px) {
    .text {
        position: absolute;
        top: 70%;
        text-align: center;
    }
}

@media (min-width: 769px) and (max-width: 1020px) {

    .main {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .row {
        width: 800;
        height: 550px;
        background: #fff;
    }
}

.input-box {
    max-width: 400px;
    width: 100%;
    box-sizing: border-box;
}

    .input-box header {
        font-weight: 700;
        text-align: center;
        margin-bottom: 45px;
    }
