body {
    display: flex;
    justify-content: center;
    height: 100vh;
    align-items: center;
    margin: 0;
    font-family: 'calibri', sans-serif;
    background-image: linear-gradient(to right, #ff7e5f, #feb47b);
}
.password-jazil{
    background-color: #97ba8a;
    width: 600px;
    padding: 23px;
    border-radius: 40px;
    box-shadow: 0px 0px 10px 0px #000000;
    margin: 15px;
}
.input-pass{
    border: 3px solid #000000;
    padding: 11px;
    border-radius: 20px;
    display: flex;
    justify-content: space-between;
}
.passs{
    border: none;
    background-color: transparent;
    outline: none;
    font-size: 19px;
}
.fa-copy{
    cursor: pointer;
}
.btn{
    background-color: #000000;
    color: #ffffff;
    padding: 10px 18px;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 15px;
}
.btn:hover{
    background-color: #87b4de;
    color: #000000;
}
.btn:active{
    transform: scale(0.9);
}
.alert-message{
    position: fixed;
    width: 300px;
    height: 50px;
    background-color: #000000;
    bottom: 20px;
    border-radius: 20px;
    box-shadow: 0px 0px 10px 0px #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 19px;
    display: none;
}
.alert-message.active{
    display: block;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: alert 1s ease-in-out;
}
.heading {
    color: #000000;
    position: absolute;
    top: 30px;
    width: 100%;
    text-align: center;
}