*{
    margin: 0;
}

body{
    display: flex;
    margin: 0;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: rgb(197, 189, 189);
}
.password{
    background-color: rgb(23, 222, 96);
    width: 60%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    padding: 15px;
    max-width: 500px;
}
.inputDiv{
    border: 2px solid black;
    padding: 10px;
    display: flex;
    border-radius: 10px;
    justify-content: space-between;
    align-items: center;
}
.input{
    border: none;
    background-color: transparent;
    outline: none;
}
.input::placeholder{
    letter-spacing: 0px;
}
.fa-copy{
    cursor: pointer;
    opacity: .3;
}
.fa-copy:hover{
    opacity: .8;
}
.btn{
    background-color: black;
    color: white;
    border: none;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 10px;
}
.btn:hover{
    background-color: green;
    cursor: pointer;
}
.alert{
    position: fixed;
    width: 30%;
    height: 10%;
    background-color: yellow;
    border-radius: 5px;
    bottom: 20px;
    right: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
     display: flex;
     justify-content: center;
     align-items: center;
}
.active.alert{
    right: -30%;
}