body {
    margin: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1C1C1C;
    color: white;
    font-family: 'Karla', sans-serif;
}

body.light-mode {
    color: #2B283A;
}

.hide-icon {
    display: none; 
}

.container-wrapper {
    max-width: 550px;
    margin: 0 auto;
    padding: 50px;
    background: #1F2937;
    border-radius: 6px;
}

.light-mode .container-wrapper {
    background: #ECFDF5;
}

h1 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 40px;
    letter-spacing: -2.5%;
}

h1 span {
    display: block;
    color: #10B981;
}

h2 {
    font-size: 20px;
    font-weight: normal;
    margin-top: 0;
    margin-bottom: 50px;
}

h2 {
    color: #D5D4D8;
}

.light-mode h2 {
    color: #6B7280;
}

.generate-block label {
    font-size: 14px;
    color: #6B7280;
}

.generate-block #set-pass-length {
    border: 0;
    padding: 12px;
    border-radius: 6px;
    max-width: 270px;
}

.generated-passwords {
    display: flex;
    column-gap: 10px;
}

.generated-passwords span {
    background: #273549;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 12px 12px;
    border-radius: 6px;
    color: #55F991;
}

#new-generated-passwords {
    display: flex;
    column-gap: 15px;
}

.generate-block {
    display: flex;
    flex-direction: column;
    max-width: 200px;
    row-gap: 10px;
}

#generate-pass-btn {
    border: 0;
    color: white;
    max-width: 200px;
    padding: 8px 0;
    border-radius: 6px;
    margin-top: 5px;
    line-height: 24px;
    background: #10B981;
}

#generate-pass-btn {
    background: #10B981;
}

.container-wrapper .divider {
    height: 1px;
    margin: 35px 0;
}

.container-wrapper .divider {
    background: #2F3E53;
}

#error-set-pass-length {
    color: red;
    font-size: 14px;
}

.mode-box {
    width: 100%;
    margin-bottom: 20px;
}

.mode-toggle {
    display: flex;
    align-items: center;
    justify-content: start;
    column-gap: 10px;
    font-size: 14px;
    cursor: pointer;
}

.input-group {
    margin: 10px 0 0 0;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    font-size: 14px;
    column-gap: 5px;
}

.input-group label {
    color: white;
}

.light-mode .input-group label {
    color: #2B283A
}