/*@import url("https://fonts.googleapis.com/css2?familly=Poppins:wght@300;400;500;600&diaplay=swap");*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
body {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

video {
    height: auto;
    width: 100%;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
}
.wrapper {
    position: relative;
    max-width: 300px;
    width: 100%;
    background: #f7e9ff;
    border-radius: 12px;
    padding: 30px 25px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.wrapper .password-box {
    position: relative;
    height: 100%;
}
.password-box input {
    height: 100%;
    width: 100%;
    border-radius: 8px;
    padding: 0 45px 0 15px;
    border: 1px solid #aaa;
    background-color: transparent;
}
.password-box .copy-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    color: #707070;
    font-size: 20px;
    cursor: pointer;
    transform: translateY(-50%);
}
.copy-icon:hover {
    color: #826afb;
}
.wrapper .range-box {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.range-box input {
    width: 100%;
    height: 5px;
    accent-color: #826afb;
}
.range-box .slider-number {
    min-width: 30px;
    text-align: right;
    font-size: 17px;
    color: #707070;
}
.wrapper .generate-button {
    width: 100%;
    color: #fff;
    padding: 12px 0;
    margin-top: 20px;
    background: #927dfc;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.generate-button:hover {
    background-color: #826afb;
}
