@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: linear-gradient(135deg, #4f46e5, #9333ea);
    color: #fff;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    background: #1e1b4b;
    padding: 30px;
    border-radius: 20px;
    width: 350px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

h1 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.password-box {
    display: flex;
    margin-bottom: 15px;
}

#password {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 8px 0 0 8px;
    font-size: 1rem;
}

#copyBtn {
    background: #6366f1;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 0 8px 8px 0;
}

#copyBtn:hover {
    background: #818cf8;
}

.options {
    text-align: left;
    margin-bottom: 10px;
}

label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.length {
    margin: 15px 0;
}

#generateBtn {
    width: 100%;
    background: #9333ea;
    border: none;
    color: white;
    font-size: 1rem;
    padding: 10px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s;
}

#generateBtn:hover {
    background: #a855f7;
}
