@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700;800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body,
input {
  font-family: "Poppins", sans-serif;
}

.container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: rgb(0,46,91);
    background: linear-gradient(135deg, rgba(0,46,91,1) 0%, rgba(19,90,158,1) 100%);
}

.forms-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.signin {
    width: 50%;
}

form {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 0rem 5rem;
    transition: all 0.2s 0.7s;
    overflow: hidden;
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

form.sign-in-form {
    z-index: 2;
}

.title {
    font-size: 2.2rem;
    color: #444;
    margin-bottom: 10px;
}

.input-field {
    max-width: 380px;
    width: 100%;
    background-color: #f0f0f0;
    margin: 10px 0;
    height: 55px;
    border-radius: 55px;
    display: grid;
    grid-template-columns: 15% 85%;
    padding: 0 1.2rem 0 0.4rem;
    position: relative;
    overflow: hidden;
}

.input-field.has-error {
    border: 2px solid #E43434;
    background-color: #ffecec;
}

.input-field i {
    text-align: center;
    line-height: 55px;
    color: #acacac;
    transition: 0.5s;
    font-size: 1.1rem;
}

.input-field input,
.input-field select {
    background: none;
    outline: none;
    border: none;
    line-height: 1;
    font-weight: 600;
    font-size: 1rem;
    color: #333;
}

.input-field input::placeholder,
.input-field select::placeholder {
    color: #aaa;
    font-weight: 500;
}

.input-field input:-webkit-autofill,
.input-field select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #f0f0f0 inset;
}

.input-field.has-error input:-webkit-autofill,
.input-field.has-error select:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #ffecec inset;
}

.btn {
    background-color: #01afef;
    border: none;
    outline: none;
    width: 100%;
    max-width: 380px;
    height: 49px;
    border-radius: 49px;
    padding: 0 40px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    margin: 10px 0;
    cursor: pointer;
    transition: 0.2s;
}

.btn:hover {
    background-color: #0082AF;
}
.btn:disabled {
    opacity: .7;
    cursor: default;
}

.image {
    width: 100%;
    transition: transform 1.1s ease-in-out;
    transition-delay: 0.4s;
}

.btn.transparent {
    margin-top: 20px;
    background: none;
    border: 2px solid #fff;
    height: 41px;
    font-weight: 600;
    font-size: 0.8rem;
}

@media (max-width: 870px) {
    .container {
        min-height: 800px;
        height: 100vh;
    }

    .signin {
        width: 100%;
    }

    .image {
        width: 200px;
        transition: transform 0.9s ease-in-out;
        transition-delay: 0.6s;
    }

    .container:before {
        width: 1500px;
        height: 1500px;
        transform: translateX(-50%);
        left: 30%;
        bottom: 68%;
        right: initial;
        top: initial;
        transition: 2s ease-in-out;
    }
}

@media (max-width: 570px) {
    form {
        padding: 0 1.5rem;
    }

    .image {
        display: none;
    }

    .container {
        padding: 1.5rem;
    }

    .container:before {
        bottom: 72%;
        left: 50%;
    }
}

.alert {
    width: 100%;
    max-width: 380px;
    position: relative;
    padding: .75rem 1.25rem;
    margin-top: 10px;
    border: 1px solid transparent;
    border-radius: .25rem;
    text-align: center;
}
.alert-dismissible {
    padding-right: 3.75rem;
}
.alert-danger {
    color: #f96e6e;
    background-color: #fde1e1;
    border-color: #fcd2d2;
}
.text-danger {
    color: #f96e6e;
}

.forgot-password,
.acessar-titular {
    margin-top: 20px;
}

.forgot-password a,
.acessar-titular a {
    color: white;
}

[v-cloak] {
    display: none;
}
