@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600&display=swap');

:root{
    --colorTextos: #49454567;
}
body{
    background: #f6eff6;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', sans-serif;
}
*{
    margin: 0;
    box-sizing: border-box;
}

h1{
    text-align: center;
    margin: 10px 0;
    font-weight: 800;
    
}

.form{
    background: 000;
    width: 50%;
    padding: 1%;
    margin: auto;
    margin-top: 2%;
    border-radius: 4px;
    box-shadow: 0 0 10px #9370a9;
    height: 550px;
    overflow: auto;
    
}
.form h4{
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;

}
.controls{
    font-size: 22px;
    margin-bottom: 20px;
}
.controls{
    background: none;
    width: 100%;
    padding: 10px;
    border-radius: 4px;
    margin-bottom: 16px;
    border: 2px solid #ffff;
       font-family: 'calibri';
    font-size: 18px;
 
    border-bottom: 3px solid #b49cc3;
}
textarea{
    min-height: 100px;
    max-height: 100px;
    max-width: 100%;
    min-width: 100%;

}
.botons{
   justify-content: center;
   font-family: 'Poppins', sans-serif;
    width: 50%;
    border: none;
    padding: 12px;
    color: black;
    margin: 16px 0;
    font-size: 16px;
    cursor: pointer;
    background: #c9b5d4;
    border-radius: 4px;
    
}
.regresar{
    text-decoration: none;
  position: absolute;
  top: 50px;
  left: 30px;

}
,textarea:focus{
    outline: none;
    color: rgb(94,93,93);
}
.form::-webkit-scrollbar{
    width: 12px;
}
.form::-webkit-scrollbar-thumb{
    background:#9370a9;
    border-radius: 6px;
}
