@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
    padding: 20px;
    font-size: 15px;
    background: linear-gradient(137deg, rgba(0, 29, 64, 1) 0%, rgba(0, 92, 200, 1) 40%, rgba(76, 143, 221, 1) 93%);
}

body a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    margin-top: 25px;
}

.container {
    width: 500px;
    background: #fff;
    border-radius: 8px;
    padding: 20px 30px;

}

.container h2 {
    font-weight: 600;
    margin-bottom: 10px;
    color: rgba(0, 92, 200, 1);
}

.wrapper .input-box {
    position: relative;
}

.input-box input {
    width: 100%;
    height: 53px;
    color: #000;
    background: none;
    font-size: 1.06rem;
    font-weight: 500;
    border-radius: 4px;
    letter-spacing: 1.4px;
    border: 1px solid rgba(0, 92, 200, 1);
    padding: 0 2.85rem 0 1rem;
}

.input-box span {
    position: absolute;
    right: 13px;
    cursor: pointer;
    line-height: 53px;
    color: rgba(0, 92, 200, 1);
}

.input-box span:hover {
    color: rgba(76, 143, 221, 1) !important;
}

.wrapper .pass-indicator {
    width: 100%;
    height: 4px;
    position: relative;
    background: #dfdfdf;
    margin-top: 0.75rem;
    border-radius: 25px;
}

.pass-indicator::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 50%;
    border-radius: inherit;
    transition: width 0.3s ease;
}

.pass-indicator#weak::before {
    width: 20%;
    background: #E64A4A;
}

.pass-indicator#medium::before {
    width: 50%;
    background: #f1a80b;
}

.pass-indicator#strong::before {
    width: 100%;
    background: #4dd354;
}

.wrapper .pass-length {
    margin: 1.56rem 0 1.25rem;
}

.pass-length .details {
    display: flex;
    justify-content: space-between;
}

.pass-length input {
    width: 100%;
    height: 5px;
}

.pass-settings .options {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.pass-settings .options .option {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    width: calc(100% / 2);
}

.options .option:first-child {
    pointer-events: none;
}

.options .option:first-child input {
    opacity: 0.7;
}

.options .option input {
    height: 16px;
    width: 16px;
    cursor: pointer;
}

.options .option label {
    cursor: pointer;
    color: #4f4f4f;
    padding-left: 10px;
}

.wrapper .generate-btn {
    width: 100%;
    color: #fff;
    border: none;
    outline: none;
    cursor: pointer;
    background: rgb(0, 92, 200);
    background: linear-gradient(135deg, rgba(0, 92, 200, 1) 24%, rgba(76, 143, 221, 1) 78%);
    border-radius: 5px;
    text-transform: uppercase;
    padding: 13px;
    font-size: 18px;
    margin-top: 20px;
}

.wrapper .generate-btn:hover {
    background: rgba(76, 143, 221, 1);
}