@font-face {
    font-family: 'OpenSans';
    src:url('../Fonts/OpenSans-Italic.otf'),
        url('../Fonts/OpenSans-Italic.woff') format('woff'),
        url('../Fonts/OpenSans-Italic.ttf') format('truetype'),
        url('../Fonts/OpenSans-Italic.svg') format('svg');
  }
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'OpenSans';
}
body{
    overflow: hidden;
}
section{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #00A858;
}

.box{
    position: relative;
}
.contenedor{
    position: relative;
    width: 400px;
    min-height: 400px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(5px);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.formulario{
    position: relative;
    width: 100%;
    height: 100%;
    padding: 40px;
}
.formulario img{
    position: relative;
    margin-left: 25px;
    height: 170px;
    width: 80%;
}
.formulario .input{
    width: 100%;
    margin-top: 20px;
}
.formulario .input input{
    width: 100%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    outline: none;
    padding: 10px 20px;
    border-radius: 35px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    letter-spacing: 1px;
    color: black;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.formulario button{
    margin-top: 25px;
    height: 40px;
    width: 120px;
    border: none;
    font-size: 15px;
    border-radius: 25px;
    background: #F58229;
    color: #fff;
    cursor: pointer;
}