*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif
}

body{
    background-color: black;
}


.info, .success, .warning, .error, .validation {
    border: 1px solid;
    margin: 10px 0px;
    padding: 15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    border-radius: 10px;
}
.info {
    color: #00529B;
    background-color: #BDE5F8;
    /* background-image: url('https://i.imgur.com/ilgqWuX.png');*/
}
.success {
    color: #4F8A10;
    background-color: #DFF2BF;
    /*background-image: url('https://i.imgur.com/Q9BGTuy.png');*/
}
.warning {
    color: #9F6000;
    background-color: #FEEFB3;
    /*background-image: url('https://i.imgur.com/Z8q7ww7.png');*/
}
.error{
    color: #D8000C;
    background-color: #FFBABA;
    /*background-image: url('https://i.imgur.com/GnyDvKN.png');*/
}
.validation{
    color: #D63301;
    background-color: #FFCCBA;
    /*background-image: url('https://i.imgur.com/GnyDvKN.png');*/
}

.container{
    background-image: url("bg_cliente.png");
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center center;
    background-size: cover;
    height: 100vh;
    display: grid;
    place-items: center;
    
}

img{
    height: 150px;
    width: 150px;
    margin: 0 auto;
}

form{
    width: 400px;
    min-height: 500px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap:2em;
    background-color: white;
    color: black;
    padding: 0 30px;

}

svg{
    fill:#fad000;
    height: 30px;
    width: 30px;
}

h1{
    text-align: center;
}

label{
    font-weight: bold;

}

.form_label{
    display: flex;
    align-items: flex-start;

}

 .form_label label{
    align-self: center;
}


input{
    height: 2rem;
    color: black;
    border-style: solid;
    border-radius: 15px;
    border-color: #3c0750;;
    padding-left: 10px;
    width: 100%;
/*     display: flex;
    justify-content: center; */
}

.form_input{
    display: flex;
    flex-direction: column;
}

input:focus-within{
    border-color: transparent;
    outline-color: black;
}


button{
/*     width: 70%;
    margin: 0 auto; */
    font-size: 1.1em;
    background-color: black;
    color:white;
    border: none;
    border-radius: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-weight:bolder;
}

/* button{
    font-size: 1.1em;
    background-color: #e92070;
    color:white;
    /* border: none; */
/*     border-color: #e92070;
    outline-color: #e92070;  */
    /* border-radius: 15px;*/
/*     padding-top: 10px;
    padding-bottom: 10px;
    font-weight:bolder; */
/* }  */


button:focus-within{
    outline-color: #c6a500;
}   

button:hover{
    background-color: #fad000;
    cursor: pointer;
    color:black;
}

button:active{
    background-color: #faff00;
    outline-color: #c6a500;
    color:black;

}