@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500&family=Karla:wght@400;800&display=swap');

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

body {
    background: black;
    color: white;
    font-family: 
}

.container {
    max-width: 1024px;
    margin: auto;
}

.app {
    width: 550px;
    height: 550px;
    background: #1F2937;
    padding: 50px 52px;
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 6vh;
    
}

.green-text{
    color: #4ADF86;
}
.green-bg{
    background: #4ADF86;
}

.title{
    font-family: Karla;
    font-size: 40px;
    font-weight: 800;
    line-height: 40px;
    letter-spacing: -2.5%;
    text-align: left;
}
.subtitle{
    font-family: Inter;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    text-align: left;
}

.btn {
    width: 192px;
    height: 42px;
    border-radius: 6px;
    background: #10B981;
    color: white;
    font-family: Inter;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    border: none;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.btn:hover {
  filter: brightness(0.9);
}

#generate-button{
    /* margin-top: 51px; */
}

#actions {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 51px;
}

#options {
    margin-left: 40px;
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
}

input#password-length{
    width: 40px;
    height: 20px;
    background: #273549;
    color: #55F991;
    font-family: 'Inter';
    font-weight: 400;
    font-size: 16px;
    text-align: center;
    border-radius: 6px;
    border: none;
}

input {
    
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance:textfield; /* Firefox */
}

.horizontal-separator {
    width: 446px;
    margin-top: 35px;
    border: 1px solid #2F3E53;
}

.passwords-container {
    display: flex;
    justify-content: space-between;
}

.password-box {
    width: 211px;
    height: 39px;
    background: #273549;
    color: #55F991;
    margin-top: 35px;
    font-family: 'Inter';
    font-weight: 500;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.fine-print{
    font-family: Inter;
    font-weight: 400;
    font-size: 14px;
    line-height: 28px;
    text-align: left;
    margin-top: 15px;
}
