body {
    font-family: "Sora", sans-serif;
    background: #d9e9dd;
    display: flex;
    justify-content: center;
    align-items: center;
}

#container {
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, hsla(108, 42%, 78%, 1) 22%, hsla(130, 29%, 31%, 1) 73%, hsla(132, 26%, 11%, 1) 100%);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 80px;
}

@media only screen and (max-width: 600px) {
    #container {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        padding: 20px;
    }
}

#title-section {
    width: 450px;
    margin: 0 auto; 
}

@media only screen and (max-width: 600px) {
    #title-section {
        width: 100%;
    }
}

#title {
    color: #152418;
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 6px;
}

@media only screen and (max-width: 600px) {
    #title {
        font-size: 32px;
    }
}

#subtitle {
    font-size: 18px;
    font-weight: 400 ;
    margin-top: 0;
    margin-bottom: 30px;
    color: #152418;
}

@media only screen and (max-width: 600px) {
    #subtitle {
        font-size: 16px;
    }
}

#input-container {
    margin-bottom: 20px;
}

@media only screen and (max-width: 600px) {
    #input-container {
        width: 100%;
    }
}

label {
    font-size: 16px;
    font-weight: 500;
    color: #152418;
}

@media only screen and (max-width: 600px) {
    label {
        font-size: 15px;
    }
}

#value {
    color: #152418;
    font-family: "Sora", sans-serif;
    font-size: 16px;
    font-weight: 800;
    margin-left: 10px;
}

@media only screen and (max-width: 600px) {
    #value {
        font-size: 15px;
    }
}

input {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
    margin-top: 15px;
}

input::-webkit-slider-runnable-track {
    width: 100%;
    height: 8.4px;
    background: #91B98C;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    border: 0.2px solid #152418;
    border-radius: 10px;
}

input::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: #152418;
    margin-top: -5px;
    cursor: pointer;
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

input:focus {
    outline: none;
}


button {
    border: none;
    border-radius: 10px;
    width: 229px;
    height: 50px;
    background: #37653F;
    color: #B8DEAE;
    font-family: "Sora", sans-serif;
    font-weight: bold;
    font-size: 18px;
    cursor: pointer;
}

@media only screen and (max-width: 600px) {
    button {
        font-size: 14px;
        width: 169px;
    }
}

button:hover {
    background: #152418;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

#divider {
    width: 450px;
    margin: 60px auto 0;
    border: 0.5px solid #152418;
}

@media only screen and (max-width: 600px) {
    #divider {
        width: 100%;
    }
}

#password-section {
    width: 450px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

@media only screen and (max-width: 600px) {
    #password-section {
        width: 100%;
    }
}

#password-box-one {
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    #password-box-one {
        width: 100%;
    }
}

#password-box-two {
    width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    #password-box-two {
        width: 100%;
    }
}

.password-box {
    width: 100%;
    height: 39px;
    background: #91B98C;
    border: none ;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: 15px;
    font-weight: 500;
    color: #152418;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media only screen and (max-width: 600px) {
    .password-box {
        font-size: 12px;
    }
}

.copy-btn {
    width: 115px;
    height: 39px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

@media only screen and (max-width: 600px) {
    .copy-btn {
        width: 100%;
        max-width: 95px;
    }
}

