/* css reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* body element positioning to the center */
body{
    display: flex;
    justify-content:center; 
    align-items: center;
    height: 100vh;
    font-family: 'Courier New', Courier, monospace;
}

.password-ctn{
    background-color: beige;
    width: 500px;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 15px 60px burlywood;
    margin: 10px;
}
/* make an animation for copy icon when active*/
.copy-icon:active {
    animation: fa-jello 1s;
}
.copy-icon{
    cursor: pointer;
}

.input-ctn{
    border: solid 2px burlywood;
    padding:0.7rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input{
    background-color: transparent;
    border: none;
    outline: none;
    font-size: 1.3rem;
    letter-spacing: 4px;
}
.input::placeholder{
    letter-spacing: 0px;
}

.btn{
    background-color: burlywood;
    color: beige;
    font-weight: 1000;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius:8px;
    border:none;
    margin: 10px 0;  

}
.btn:hover{
    background-color: rgb(179, 159, 134);
}
.btn:active {
    animation: fa-jello 1s infinite;
    background-color: rgb(179, 159, 134);
}

h2{
    color: rgb(179, 159, 134);
    display: flex;
    justify-content: center;
    align-items: center; 
    margin-bottom: 1rem;
}


.alert-ctn {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background-color: #f3d6b3;
    color: #7a4b2a;
    font-size: 20px;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #d8a06d;
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.activate.alert-ctn{
    display: none;
}