body {
    background-color: #01011b;
    margin: 0;
    color: #9eb8f1;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.container {
    background-color: #010125;
    padding: 3rem;
    border-radius: 1rem;
    border: 3px solid gray;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: auto;
    height: auto;
    max-width: 100%
    

}

.result-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

.form {
    display: grid;
    grid-template-columns: auto auto;
    row-gap: 1rem;
    column-gap: 3.5rem;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    

}

.title {
    margin: 0;
    text-align: center;
    padding: 1rem;

}

label {
    font-weight: bold;
}

.character-amount-container {
    display: flex;
    align-items: center;

}

.number-input {
    width: 2.5rem;
    margin-left: 3px;
}


.password-display {
    background-color: white;
    color: #010125;
    font-weight: bold;
    font-size: 15px;
    border: 1px solid gray;
    border-radius: 1rem;
    margin-bottom: .5rem;
    height: 1.8rem;
    width: 420px;
    resize: none;
    overflow-y: hidden;
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
    padding: 15px 14px;
    padding-top: 31px;
    word-break: break-all;
    text-align: left;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}

.copy-button {
    background-color: #01011b;
    color: #9eb8f1;
    border: 2px solid gray;
    padding: .5rem 1rem;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    border-radius: 1rem;
    margin-left: 16px;
    position: absolute;
    right: 12px;
    z-index: 50;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    
}

.btn {
    grid-column: span 2;
    background-color: #01011b;
    color: #9eb8f1;
    border: 2px solid gray;
    padding: .5rem 1rem;
    font-weight: bold;
    font-size: medium;
    cursor: pointer;
    border-radius: 1rem;
    margin-top: .5rem;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.btn:hover {
    background-color: #FFFFFF33;
}

.copy-button:hover {
    background-color: #36476d;;
}

.alert {
    position: fixed;
    top: 6px;
    right: 6px;
    padding: .5rem 1rem;
    border-radius: 1rem;
    border: 2px solid gray;
    background: #010125;
    color: #9eb8f1;
    font-size: large;
    font-weight: bold;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
  }

input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin: 4px 4px 4px;
    margin-top: 1px \9;
    margin-left: auto;
  }
