@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
    -webkit-font-smoothing: antialiased;
    box-sizing: border-box;
}
html,
body {
    margin: 0px;
    height: 100%;
}
a blue color as a generic focus style
button:focus-visible {
    outline: 2px solid #4a90e2 !important;
    outline: -webkit-focus-ring-color auto 5px !important;
}
a {
    text-decoration: none;
}


.random-password-generator {
    display: flex; 
    justify-content:center; 
    gap:100px;
    align-items: flex-start;
    width: 100%;
    height: 100%;
    background-color: #1b1b1b;
}

.unpopulated-state {
    position: relative;
    top: 100px;
    width: 550px; 
    height: 550px;
    background-color: #1f2937;
    padding-top: 120px;
    padding-left: 80px;
}



h1 {
    width: 500;
    height: 80px;
    font-family: "Karla-ExtraBold", Helvetica;
    font-weight: 600;
    font-size: 30;
    color: #ffffff;
}

span {
    color: #4adf86;
}

p {
    width: 372px;
    height: 28px;
    position: relative;
    width: 372px;
    font-family: "Karla-ExtraBold", Helvetica;
    font-weight: 100;
    color: #d5d4d8;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 28px;

}


button {
    position: relative;
    width: 191;
    height: 42;
    top:50px;
    border-radius: 6px;
    background: #10B981;
    color: #ffffff;
    font-family: Helvetica;
    font-size: 16px;
    border-style: hidden;
}

.Box {
    width: 420px; 
    height: 0.5px; 
    background-color: #2F3E53; 
    margin-top: 75px; 
}

.showbox{
    display: flex;
    gap:20px;
}

 #boxleft , #boxright  {
    margin-top: 50px;
    position: relative;
    width: 200px;
    height: 39px;
    background-color: #273549;
    border-radius: 6px;
    color: #55F991;
    text-align:center;
    font-family: Helvetica;
    font-size: 18px;
    font-style: normal;
    font-weight: 300;
    line-height: 38px;
    cursor: pointer;
}

.copied-message {
    display: none;
    width:fit-content;
    text-align: center;
    color: white;
    background-color: #4ca5af;
    padding: 10px 20px;
    border-radius: 8px;
    margin-top: 30px;
    margin-left: 130px;
    font-size: 14px;
    font-family: Helvetica;
    transition: all 0.3s ease;
    opacity: 0;
}

.copied-message.show {
    display: block;
    opacity: 1;
}










/* .copy-msg {
    color: green;
    font-size: 12px;
    display: none;
    margin-top: 100px;
    margin-right: 100px;
} */

