*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

body{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #d4d4d4;
    background-image: url(bg.jpg);
    background-position: left;
    background-size: cover;
    /* background-repeat: no-repeat, repeat; */
}

.container{
    width: 100%;
    max-width: 400px;
    border-radius: 40px;
    background-color: #fff;
    padding: 40px 30px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.548);
    
}


.container h1{
    font-size: 38px;
    
    margin-bottom: 36px;
    text-align: center;

    font-family: "Honk", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    font-variation-settings:
      "MORF" 15,
      "SHLN" 50;
    
}

.inputBox{
    position: relative;
    margin-bottom: 24px;
}

.inputBox span{
    position: absolute;
    top: 50%;
    right: 4%;
    transform: translateY(-50%);
    color: #333333;
    font-size: 20px;
    cursor: pointer;
}

.passBox{
    width: 100%;
    height: 40px;
    padding: 8px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 700;
    background-color: #f2f2f2;
    color: #333333;
    outline: none;
}

input[type="range"]{
    width: 100%;
}

.row{

    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    margin-top: 15px;

}

.row p{
    font-weight: 700;
}

input[type="checkbox"]{
    margin-right: 8px;
}

.getBtn{
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    background-color: #476cbd;
    cursor: pointer;
    /* margin-top: 30px; */
    margin: 30px 0 20px 0;

}

.getBtn:hover{
    background-color: #1d1e20;
    
}

#sliderValue{
    margin-right: 7px;
}
