:root{
    --gray: #c0c0c0;   
    --dark-gray: #888d90;
    --light-gray: #f0f0f0;
	--red: #c82333;
    --white: #fff;
    --background: #343336;
    --success: #dbead5; 
    --error: #f8d3cf;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Open Sans",sans-serif;
}

body {
    overflow-x: hidden; 
}


.header{
    width: 100vw;
    margin-bottom: 50px;
    box-shadow: 0 3px 10px var(--gray);
}

.container{
    width: 150px;
    height: 90px;
    display: flex;
    align-items: center;    
    min-width: 500px;
    display: flex;
    justify-content: space-around;
}

.container img{
    max-width: 100%;
    max-height: 45px;
    
}

.wrapper{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-width: 500px;
    margin-bottom: 100px;
}

.info-1, .info-2{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

.line{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    position: relative;
}

.line::before{
    content: '';
    position: absolute;
    left: 50%;    
    width: 0;
    height: 1px;
    background: var(--gray);
    animation: left 2s forwards;
}

.line::after{
    content: '';
    position: absolute;
    right: 50%;    
    width: 0;
    height: 1px;
    background: var(--gray);
    animation: right 2s forwards;
}

@keyframes left{
    to{
        left: 50%;
        width: 50%;
    }
}

@keyframes right{
    to{
        right: 50%;
        width: 50%;
    }
}

.form {
    margin-top: 10px;
    min-height: auto;
    padding: 25px;    
    min-width: inherit;
}

.form label{
    font-size: .875rem;
}

.form input{
    width: 100%;
    height: 40px;
    border: 1px solid var(--gray);
    border-radius: 5px;
    outline: none;
    padding: 0 5px;
}

.form input:focus{
    border: 1px solid var(--dark-gray);
}

.button{
    width: 100%;
    margin-top: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button button{
    min-width: 30%;
    height: 50px;
    background: var(--background);
    border: var(--background);
    font-size: 1rem;
    color: var(--white);
    border-radius: 5px;
    outline: none;    
    cursor: pointer;
    padding: 5px;
}

.box{
    min-width: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    border: 1px solid var(--light-gray);
    padding: 5px;
}

img{
    max-width: 100%;
    max-height: 70px;   
}

.box-success,.box-error{
    min-width: inherit;
    padding: 5px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-weight: 300;
}

.box-success.success{
    background: var(--success);
    color: var(--background);
    border-radius: 5px;
}

.box-error.error{
    background: var(--error);
    color: var(--background);
    border-radius: 5px;
}

.style{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.file{
    cursor: pointer;
}

p{
    color: var(--background);
}

footer{
    width: 100%;
    height: 50px;
    position: fixed;
    bottom: 0;
    background: var(--background);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

footer img{
    max-width: 100%;
    max-height: 35px;   
}

/* BREAKPOINT */
@media (max-width: 650px) {

    .header{
        padding: 0;
        box-shadow: none;
    }

    .container{
        justify-content: center;
    }

    .box{
        flex-direction: column;
    }
    
}
