body {
    background: url(../img/background.png) no-repeat;
    background-size: 100vw 100vh;
}
.actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
}
.actions button{
    padding: 5px 40px;
    border-radius: 6px;
    font-weight:600;
    font-size: 16px;
}
.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 5% 0 0% 0;
}
.two-columns {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    height: 55px;
}
.title {
    width: 35rem;
}
h1 {
    font-weight: bold;
    font-size: 1.6em;
    text-align: center;
    color: #004795;
    margin-bottom: 20px;
}
h1 span {
    color: #0074c2;
}
h2 {
    font-weight: bold;
    font-size: 1.5em;
    text-align: center;
    color: #0074c2;
    margin-bottom: 0;
}
.text {
    width: 500px;
}
.form-container {width: 100%;min-width: 300px;max-width: 520px;}
a {
    color: white;
}
a:hover {
    color: black;
}
.wrapp {
    border-radius: 10px;
    background-color: #0074c2;
}
.login-input {
    height: 2px;
    margin: 0 0 10px 0;
    border: none;
    border-radius: 6px;
}
.recaptcha {
    width: 100%;
    margin-top: 10px;
}
.stores {
    margin-top: -20px;
    margin-bottom: 10px;
}
.stores img {
    width: 100px;
    height: auto;
}
.mais {
    display: flex;
    gap: 20px;
}
.information {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.information button {
    margin-top: -10px;
}
.error {
    color: red;
    font-weight: bold;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}
.g-recaptcha{
    margin-top:10px;
    width: 100%;
}
.inline-checkbox{
    margin: 10px;
}

@media (max-width: 800px){
    
    body {
        background: url(../img/background-mobile.jpg) no-repeat;
        background-size: cover;
    }

    .title {
        width: 90%;
    }

    .form-container {
        width: 96%;
        min-width: 280px;
        max-width: 520px;
     }

    .content {
        margin: 5% 0 0 0;
    }

    h1 {
        font-weight: bold;
        font-size: 1.3em;
        text-align: center;
        color: #004795;
        margin-bottom: 20px;
    }
    
    .login-input {
        height: 2px;
        margin: 0 0 0px 0;
        border: none;
        border-radius: 6px;
    }
}
@media screen and (max-width: 540px) {
   
    .container {
        width: 100% !important;
    }
    
    .row.g-1 {
        display: flex;
        flex-direction: column;
        width: 100%;
    }
    
    .col-6 {
        width: 100%;
    }
    
    .col-4 {
        width: 100%;
    }
    
    .col-2 {
        width: 100%;
    }
    
    .content {
        margin: 10% 0;
    }
    
    button.btn.btn-outline-primary.btn-light.btn-sm {
        width: 100%;
    }
    
    .actions {
        flex-direction: column;
        margin: 10% 0 0;
    }
    
}