﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Open Sans', sans-serif;
}

.Error {
    text-align: center;
    font-size: 13px;
    margin-bottom: 15px;
}

.Content {
    width: 100vw;
    height: 100vh;
    background-color: #f9f9f9;
    display: flex;
}

.btn_link {
    margin-top: 50px;
    color: #FFF;
    text-align: center;
    font-size: 20px;
}

.LogoArea {
    width: 70%;
    height: inherit;
    display: flex;
    justify-content: center;
}

    .LogoArea img {
        width: 100%;
        animation-name: MoveLogo;
        animation-iteration-count: infinite;
        animation-timing-function: linear;
        animation-duration: 2.5s;
    }

@keyframes MoveLogo {
    0% {
        margin-top: 0;
    }

    50% {
        margin-top: 10px;
    }
}

.FormArea {
    width: 30%;
    height: inherit;
    background-color: #2C97D1;
    display: flex;
    justify-content: center;
    color: #FFF;
    padding: 20px;
    padding-top: 100px;
    min-width: 320px;
}

form {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.form-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

    .form-header img {
        width: 50px;
        height: auto;
        margin-bottom: 10px;
    }

.form-inputs {
    display: flex;
    flex-direction: column;
    padding: 10px 40px;
    width: 100%;
}


input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: white;
    -webkit-box-shadow: 0 0 0px 0px #000 inset;
    transition: background-color 5000s ease-in-out 0s;
}


::-webkit-input-placeholder {
    color: #FFF;
    font-size: 18px;
}

.form-inputs input {
    padding: 0 5px;
    margin: 20px 0;
    width: 100%;
    color: #FFF;
    font-size: 20px;
    font-family: 'Open Sans', sans-serif;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #DDD;
    background: transparent;
}

.form-footer {
    display: flex;
    justify-content: center;
}

    .form-footer button {
        width: 50%;
        padding: 10px;
        background-color: #296586;
        border: 0;
        border-radius: 2px;
        color: #FFF;
        font-size: 16px;
        transition: box-shadow 0.3s;
        font-weight: 700;
    }

        .form-footer button:hover {
            cursor: pointer;
            box-shadow: 0px 0px 15px #DDD;
        }

@media (max-width: 768px) {
    .Content {
        flex-direction: column;
    }

    .LogoArea {
        width: 100%;
        height: 210px;
    }

        .LogoArea img {
            width: 100%;
            animation: none;
        }

    .FormArea {
        width: 100%;
        padding-top: 50px;
    }

    .form-footer button {
        width: 79%;
    }
}
