﻿.row {
    max-width: 1000px;
    width: 100%;
    height: 400px;
    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;
}

.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-box {
    width: 90%;
    box-sizing: border-box;
}

    .input-box header {
        font-weight: 700;
        text-align: center;
        margin-bottom: 45px;
    }

.texts h1 {
    font-size: 30px;
    font-weight: 800;
    color: #068BBF;
}

.texts p {
    font-size: 15px;
}

.input-field {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #068BBF;
    border-radius: 5px;
}

    .input-field i {
        margin-left: 10px;
        padding: 5px;
        color: #068BBF;
    }

    .input-field input {
        border: none;
        width: 100%;
        outline: none;
        height: 45px;
        border-radius: 5px;
    }

.botons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

    .botons a {
        width: 80%;
        padding: 8px 16px;
        text-decoration: none;
        border-radius: 8px;
        text-align: center;
    }

@media only screen and (max-width: 768px) {
    .botons {
        flex-direction: column;
    }

        .botons a {
            width: 100%;
        }

    .text {
        position: absolute;
        top: 70%;
        text-align: center;
    }

    .texts h1 {
        font-size: 20px;
        font-weight: 800;
        color: #068BBF;
    }
}

@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;
    }
}
