@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: rgb(103, 42, 20);
}

.wrapper{
    max-width: 500px;
    background: #fff;
    border-radius: 7px;
    padding: 20px 25px 15px;
}

header h1{
    font-size: 31px;
    font-weight: 500;
    color: rgb(53, 53, 55);
}

header p{
    margin-top: 5px;
    font-size: 18px;
    color: rgb(122, 111, 107);
}
.inputs{
    margin: 20px 0 27px;
}

.inputs input{
    width: 100%;
    height: 60px;
    outline: none;
    font-size: 19px;
    padding: 0 17px;
    border-radius: 5px;
    border: 1px solid #999;
}
.inputs input:focus{
    box-shadow: 0 3px 6px rgba(103, 42, 20, 0.778);
}
.inputs button{
    width: 100%;
    height: 56px;
    opacity: 07;
    pointer-events: none;
    outline: none;
    margin-top: 20px;
    border: none;
    cursor: pointer;
    font-size: 17px;
    color: #fff;
    border-radius: 5px;
    background: rgb(103, 42, 20);
}
.inputs button:hover{
    background: rgba(103, 42, 20, 0.882);
}
.inputs button.active{
    opacity: 1;
    pointer-events: auto;
}
.info-txt{
    display: none;
    font-size: 19px;
    text-align: center;
    margin-bottom: 18px;
}

.info-txt span{
    color: rgb(103, 42, 20);
}