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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #033647, #6f86d6);
    color: #fff;
}

.wrapper {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 32px 36px;
    border-radius: 12px;
    box-shadow: 6px 6px 12px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
}
#btnCopy {
    font-size: 14px;
}

#btnCopy.copied {
    font-size: 12px;
    color: #27ae60;
}

.wrapper h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.password-field {
    position: relative;
    width: 320px;
    margin: 10px 0;
}

.password-field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 6px;
    border: none;
    font-size: 18px;
    outline: none;
    color: #222;
}

.password-field button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    font-size: 22px;
    cursor: pointer;
    color: #333;
}

.option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 8px 0;
    width: 100%;
}

.option label {
    font-size: 16px;
    cursor: pointer;
}

.option input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.generate-btn {
    margin-top: 14px;
    background: #1143cc;
    color: #fff;
    padding: 12px 26px;
    font-size: 16px;
    font-weight: bold;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.generate-btn:hover {
    background: #1e3799;
}
