* {
    margin: 0 auto;
    width: 80%;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: rgb(65, 62, 62);
    width: 70%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.logo {
    max-width: 400px;
    margin-bottom: 15px;
    background-color:#0000 ;
}

.container-input {
    max-width: 300px;
    margin: 14px 0;
}

.container-input span {
    color: #fff;
    font-size: 22px;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 5px;
    background: #696969;
    height: 18px;
    outline: none;
    margin-top: 8px;
}

.button {
    height: 40px;
    background-color: #267e09;
    border: 0;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 40px;
    color: #FFF;
    font-weight: bold;
    font-size: 16px;
}

.container-password {
    max-width: 200px;
    margin: 18px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    cursor: pointer;
}

.title {
    text-align: center;
    color: #FFF;
    font-size: 28px;
    margin-top: 24px;
    margin-bottom: 8px;
}

.password {
    height: 60px;
    background-color: #fff;
    border-radius: 4px;
    display: flex;
    justify-content: center;
    align-items: center;
    color:#000000;
    border: 1px solid #fff;
    transition: transform 0.5s;

}

.password:hover {
    transform: scale(1.05);
    border-color: #FFF;
}

.hide {
    display: none;
}

.tooltip {
    color: #FFF;
    position: relative;
    top: 20px;
    padding: 6px 8px;
    background: rgb(10, 10, 10);
    text-align: center;
    font-size: 16px;
    border-radius: 6px;
    visibility: hidden;
    opacity: 0;
    transition: all 0.5s ease-in-out;
}

.container-password:hover .tooltip {
    visibility: visible;
    bottom: 50px;
    opacity: 1;
}