*{
    font-family: sans-serif;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
}

body {
    background-color: rgb(240, 239, 239);
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo{
    max-width: 600px;
    margin-bottom: 24px;
}

.container-input{
    max-width: 500px;
    margin: 14px 0;
}

.container-input span{
    color: black;
    font-size: 25px;
}

.slider{
    -webkit-appearance: none;
    width: 100%;
    border-radius: 8px;
    background: rgba(56, 54, 54);
    height: 18px;
    outline: none;
    margin-top: 8px;
}

.button-cta{
    height: 40px;
    background-color: rgba(32, 79, 235);
    border: 0;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 5px;
    font-weight: bold;
    font-size: 15px;
}

.container-password{
    max-width: 480px;
    margin: 14px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.Title{
    text-align: center;
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
}

.password{
    height: 50px;
    background-color: rgba(141, 139, 139, 0.4);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #000;
    border: 1px solid #313131;
    transition: transform 0.5s;
}

.password:hover{
    transform: scale(1.03);
}

.Subtitle{
    color: rgb(114, 110, 110);
    position: relative;
    top: 20px;
    padding: 6px;
    background:  rgba(26, 25, 25, 0.4);
    text-align: 16px;
    border-radius: 8px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.hide{
    display: none;
}

.container-password:hover .Subtitle{
    visibility: visible;
    bottom: 50px;
    opacity: 1;
}

