﻿* {
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
}

.container {
    display: flex;
    height: 100vh;
}

.left {
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    animation-name: left;
    animation-duration: 1s;
    animation-fill-mode: both;
    animation-delay: 1s;
}

.right {
    flex: 1;
    background-color: #0047b6;
    transition: 1s;
    background-image: url("/Imagens/Capa-Inicio.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}



.header > h2 {
    margin: 0;
    color: rgba(0, 71, 182)
}

.header > h4 {
    margin-top: 10px;
    font-weight: normal;
    font-size: 15px;
    color: rgb(25, 83, 177);
}

.form {
    max-width: 80%;
    display: flex;
    flex-direction: column;
}

    .form > p {
        text-align: right;
    }

        .form > p > a {
            color: #000;
            font-size: 14px;
        }

.form-field {
    height: 46px;
    padding: 0 16px;
    border: 2px solid #ddd;
    border-radius: 10px;
    font-family: 'Source Sans Pro', sans-serif;
    outline: 0;
    transition: .2s;
    margin-top: 20px;
}

    .form-field:focus {
        border-color: #0f7ef1;
    }

.form > button {
    padding: 12px 10px;
    border: 0;
    background: linear-gradient(to right, #de48b5 0%,rgba(0, 71, 182) 100%);
    border-radius: 10px;
    margin-top: 10px;
    color: #fff;
    letter-spacing: 1px;
    font-family: 'Source Sans Pro', sans-serif;
    cursor: pointer; /* Default cursor for button */
    transition: cursor 0.3s ease;
}

.animation {
    animation-name: move;
    animation-duration: .4s;
    animation-fill-mode: both;
    animation-delay: 2s;
}

.a1 {
    animation-delay: 2s;
}

.a2 {
    animation-delay: 2.1s;
}

.a3 {
    animation-delay: 2.2s;
}

.a4 {
    animation-delay: 2.3s;
}

.a5 {
    animation-delay: 2.4s;
}

.a6 {
    animation-delay: 2.5s;
}

@keyframes move {
    0% {
        opacity: 0;
        visibility: hidden;
        transform: translateY(-40px);
    }

    100% {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
}

@keyframes left {
    0% {
        opacity: 0;
        width: 0;
    }

    100% {
        opacity: 1;
        padding: 20px 40px;
        width: 440px;
    }
}
