@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300&display=swap');
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background: #667db6;
    background: -webkit-linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6);
    background: linear-gradient(to right, #667db6, #0082c8, #0082c8, #667db6); 
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Roboto', sans-serif;
}

.container{
    background-color: rgba(36, 36, 128, 0.836);
    width: 295px;
    display: flex;
    flex-direction: column;
    box-shadow:0 0 10px 0.3px rgba(49, 49, 143, 0.836);
}

h2{
    align-self: center;
    margin: 1rem;
}

.password{
    background-color: rgb(21, 11, 58);
    padding: 0.5rem 0.5rem;
    margin: 0 0.6rem;
    font-size: 17px;
    position: relative;
}

p{
    height: 22.5px;
}

.pw-body{
    padding: 0.6rem;
    padding-top: 1rem;
}

.copy-pw{
    position: absolute;
    right: 0;
    top: 0;
    margin: 3px;
    color: white;
    background-color: rgb(40, 40, 156);
    font-size: medium;
    cursor: pointer;
    border: none;
    padding:7px;
}

.copy-pw:hover{
    /* color: rgb(21, 11, 58); */
    background-color: rgba(20, 20, 128, 0.836);
}

.controls{
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
}

.generate-btn{
    font-size: larger;
    font-weight: bold;
    padding: 0.4rem 1rem;
    margin: 1rem 0.6rem ;
    margin-top: 0;
    cursor: pointer;
    color: rgb(40, 40, 156);
}