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

body {
    width: 100%;
    height: 100vh;
    background: #222831;
}

#main-container {
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}

#container {
    width: 60%;
    height: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#generator-container, #storage-container {
    background-color: #00ADB5;
    width: 45%;
    height: 100%;
    padding: 20px;
    border-radius: 10px;
}

header {
    border-bottom: 1px solid #393E46;
    padding-bottom: 20px;
    font-size: 25px;
}

#password-container {
    border: 1px solid #393E46;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 30px 0 15px 0;
    border-radius: 5px;
}

#password {
    width: 100%;
    font-size: 20px;
    text-align: center;
}

#password:hover {
    cursor: text;
}

.copy-btn, .delete-btn {
    font-size: 20px;
    background-color: transparent;
    border: none;
    padding: 7px;
    height: 100%;
    color: #393E46;
}

.copy-btn:hover, .delete-btn:hover {
    cursor: pointer;
}

.delete-btn {
    margin-left: 5px;
}

#length, #strength {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin: 15px 0 5px 0;
}

#strength span {
    color: red;
}

#slider {
    width: 100%;
}

#settings {
    margin: 15px 0;
}

form {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 50% 50% 50%;
    margin-bottom: 40px;
}

#generate-btn, #delete-all-btn {
    width: 100%;
    padding: 15px 0;
    font-size: 20px;
    border-radius: 5px;
    border: none;
    background-color: #393E46;
    color: #fff;
}

#generate-btn:hover, #delete-all-btn:hover {
    cursor: pointer;
    transform: scale(1.05);
    transition: .3s ease;
}

#no-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 47vh;
    font-size: 20px;
    font-style: italic;
    color: #393E46;
}

#recents {
    padding: 0 0 15px 0;
    height: 47vh;
    overflow-y: scroll;
    scroll-behavior: smooth;
    display: none;
}

#recents::-webkit-scrollbar {
    display: none;
}

li {
    list-style-type: none;
    line-height: 30px;
    border-bottom: 1px solid #393E46;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

li p {
    width: 100%;
}
