@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700;900&family=Roboto:wght@400;500;700&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Roboto', sans-serif;
}
body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #062C30;
}
.wrapper {
    max-width: 500px;
    background-color: #fff;
    border-radius: 7px;
    padding: 25px;
}
header h1 {
     font-size: 1.5rem;
}
header p {
    margin-top: 5px;
    font-size: 1rem;
    color: #474747;
}
.inputs {
    margin: 20px 0 14px;
}
.inputs input {
    width: 100%;
    height: 60px;
    outline: none;
    border: 1px solid #999;
    padding: 0 16px;
    font-size: 1rem;
    border-radius: 5px;
}
.inputs input:focus {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}
.inputs button {
     width: 100%;
     height: 50px;
     font-size: 1rem;
     outline: none;
     border: none;
     opacity: 0.7;
     cursor: pointer;
     pointer-events: none;
     margin-top: 4px;
     color: #fff;
     border-radius: 5px;
     background: #062C30;
}
.inputs button.active {
    opacity: 1;
    pointer-events: auto;

}
.info-txt {
    display: none; 
    font-size: 20px;
    text-align: center;
    margin-bottom: 10px;  
}
.info-txt span {
    color: #062C30;
}