@import url('https://fonts.googleapis.com/css2?family=Barlow+Semi+Condensed:wght@100&family=Roboto:wght@300;400;700&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Barlow Semi Condensed', sans-serif;
    font-family: 'Roboto', sans-serif;
    /*background-color: #203b4e;*/
    /*background-image:  radial-gradient(#ffcc01 0.65px, transparent 0.65px), radial-gradient(#ffcc01 0.65px, #203b4e 0.65px);*/
    background-size: 26px 26px;
    background-position: 0 0,13px 13px;
    display: flex;
    min-height: 100vh;
}

.form{
    margin: auto;
    width: 90%;
    max-width: 600px;
    border-radius: 10px;
    text-align: center;
    margin-top: 0em;;
}

.form_escudo{
    margin-top: .5em;
    width: 30%;
    max-width: 100px;
    min-width: 80px;
}


.form_title{
    font-size: 2rem;
    margin-bottom: .5em;
    color: #203b4e;
}

.form_container{
    margin-top: 2em;
    display: grid;
    gap: 2em;
}

.form_group{
    position: relative;
    --color: #5757577e;
}

.form_input{
    width: 100%;
    background: none;
    color: #5c5a5a;
    font-size: 1rem;
    padding: .6em .3em;
    border: none;
    outline: none;
    border-bottom: 1px solid var(--color);
    font-family: 'Roboto', sans-serif;
}

.form_input:not(:placeholder-shown) ~ .form_label{
    color: #4d4646;
}


.form_input:focus + .form_label,
.form_input:not(:placeholder-shown) + .form_label{
    transform: translateY(-12px) scale(.8);
    transform-origin: left top;
    color: #203b4e;
}


.form_label{
    color: var(--color);
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 5px;
    transform: translateY(10px);
    transition: transform .5s, color .3s;
}

.form_submit{
    background: #ffcc01;
    color: #203b4e;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    font-size: 1rem;
    padding: .8em 0;
    border: none;
    border-radius:.5em;
}

.form_line{
    position:absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #203b4e;
    transform: scale(0);
    transform: left bottom;
    transition: transform .4s;
}

.form_input:focus + .form_label,
.form_input:not(:placeholder-shown) ~ .form_label{
    transform: scale(.7);
}

@media(max-width:425px)
{
    .form_title{
        font-size: 1.8rem;
    }
}

.swal2-styled.swal2-success{
    background-color: #dc3545 !important;
  }
  