@import url('https://fonts.cdnfonts.com/css/karla?styles=20248');
@import url('https://fonts.cdnfonts.com/css/inter');

body {
    margin: 0;
    background-color: #1C1C1C;
    display:flex;
    justify-content: center;
    align-items: center;
    height:100vh;
}

.container {
    background-color: #1F2937;
    width:550px;
    height:550px;
    color:#fff;
    display:flex;
    justify-content: center;
    align-items: center;
}   

.box {
    width:420px;
    max-width:510px;
    height:auto;
}

h1 {
    font-family: 'Karla';
    font-style: normal;
    font-weight: 800;
    font-size:40px;
    line-height:40px;
    letter-spacing: -0.025em;
    margin-bottom:0px;
 }
    
span {
   color:#4ADF86;
}

#insecurePassword {
    font-family: 'Inter';
    font-style:normal;
    font-weight:400;
    font-size:20px;
    line-height:28px;
    color: #D5D4D8;
    margin-top:10px;
 }

/* Character Input */
.characters {
    font-family:'Inter';
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    row-gap:10px;
    font-size:14px;
    margin-top:45px;
    color: #D5D4D8;
}

input {
  padding:4px 10px;
  height:auto;
  border-radius: 6px;
  border:none;
}

/* Button */
button {
    border-radius: 6px;
    padding:  9px 17px 9px 15px;
    height:42px;
    background: #10B981;
    border:none;
    color:#fff;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    margin-top:35px;
    margin-bottom:35px;
    font-size: 16px;
    width: 100%;
}

button:hover{
     background:#273549;
     color: #4ADF86;
}


/* Divider */

hr {
    width: 100%;
    height: 0px;
    border: 1px solid #2F3E53;
}   

/* Generate Password boxes */
.passwords {
    display:flex;
    justify-content: space-between;
    align-items:start;
    width:100%;
    margin-bottom:20px;
}    

.passwords p {
    background:#273549;
    height:39px;
    width:180px;
    border-radius: 6px;
    color: #55F991;
    font-family: 'Inter';
    font-style:normal;
    font-weight:500;
    font-size:16px;
    line-height:32px;
    text-align:center;
    column-gap: 24px;
    overflow-wrap: break-word;
    height:auto;
    padding:10px;
    line-height:1.1;
    max-height:140px;
    overflow-y: auto;
}