*{padding: 0;margin: 0;box-sizing: border-box;font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;}
body{
    background: #187acf;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.container {
    background: white;
    padding: 10px;
    width: 300px;
    max-width: 90%;
    border-radius: 5px;
    box-shadow: 0 0 8px #7c7777;
}
#inputPass {
    background: transparent;
    border: 2px solid #ededed;
    padding: 8px 10px;
    width: 100%;
    cursor: text;
    border-radius: 6px;
    transition: .4s ease;
    outline: none;
}
.input{
    position: relative;
}
#Generate {
    background: #187acf;
    color: white;
    border: none;
    padding: 8px 30px;
    border-radius: 4px;
    margin-top: 10px;
    cursor: pointer;
    transition: .4s ease;
    opacity: .7;
}

#Generate:hover {
    opacity: 1;
}
.pass-length .len-range{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pass-length input {width: 100%;accent-color: #187acf;}
#Copy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70%;
    aspect-ratio: 1;
    border: none;
    border-radius: 4px;
}

#msg {
    font-size: 14px;
    margin-bottom: 5px;
}

#msg.success{
    color: #31d331;
}

#msg.failed{
    color: #f10d0d;
}



.check {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ededed;
    margin-bottom: 4px;
    border-radius: 5px;
}