body{
    height: 100%;
    width: 100%;
    background: url(./images/bgimage.avif) no-repeat left /cover;
    overflow: hidden;
}
.parentcontainer{
    display: flex;
    justify-self: center;
    justify-content: flex-start;
    align-items: center;
    height: 100%;
    width: 100%;
    gap: 2rem;
}
.invalid-password-container{
    position: absolute;
    top: 20%;
    left: 15%;
    transform: translateX(50%);
    z-index: 1;
    height: 20rem;
    width: 35rem;
    background-color: white;
    border-radius: 0.85rem;
    border: 2px solid green;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:1rem;
}
.invalid-password-container.active{
    display: flex;
}

.invalidpass-span{
    position: relative;
    top: 0.55rem;
    font-size: 1rem;
    font-weight: bolder;
    height: 2rem;
    text-transform: capitalize;

}
.okay-btn{
   height: inherit;
   width: inherit;
   font-weight: bolder;
   font-size: large;
   font-family: monospace;
   background-color: green;
   font-weight: bolder;
   color: white;
   cursor: pointer;
   border: none;
   border-radius: 2px;
   transition: 0.1s ease-in;
   text-transform: uppercase;
}
.okay-btn:active{
    box-shadow: 3px 5px 10px rgba(0,0,0);
}
.ok-button-container{
   height: 2rem;
   width: 6rem;
   display: flex;
   flex-direction: column;
   justify-content: center;
   align-items: center; 
   cursor: pointer;
   transition: transform 0.3s ease-in;
   font-size: 2rem;
}
.close-button-container:hover{
    transform: scale(1.04);
    box-shadow: 5px 5px 5px rgba(0,0,0);
}
label{
    font-size: large;
    height: 1.25rem;
    width:8rem;
    font-weight: bold;
    color: black;
}

input{
    background-color: #ffff;
    height: 1.85rem;
    width: 15rem;
    font-size: medium;
    border: 1px solid black;
    border: none;
    border-radius: 4px;
    outline: 1px solid navajowhite;
    padding-left: 0.75rem;
    transition: 0.3s ease-in;
}
input:focus{
    transform: scale(1.06);
}
.loginpopup{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap:2rem;
    height: 50%;
    width: 40%;
    background: url(./images/moneymanagement-img.jpg) center ;
    opacity: 80%;
    border-radius: 12px;
    overflow: hidden;
    /* animation: zoominanime 1.4s ease-in forwards; */
}

.personaltracker-desc{
    font-weight: bolder;
    color: white;
    height: 6rem;
    width: 25rem;
}
.custom-span{
  font-size: 34px;
  height: 3rem;
  width: 25rem;


}
strong{
    letter-spacing: 1px;
    font-size: 38px;
    color: rgb(225, 101, 6);
  display: inline-block;
  /* animation: zoominanime 1s ease-in forwards; */
}

@keyframes zoominanime{
    0%{
        opacity: 0;
    }
    100%{
        opacity: 1;
    }
}
.in-row{
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 1rem;
}
.loginbtn{
    cursor: pointer;
    height: 1.85rem;
    width: 5.25rem;
    border: none;
    border-radius: 5px;
    letter-spacing: 1px;
    font-size: large;
    font-family: monospace;
    font-weight: bolder;
    color: white;
    background: linear-gradient(to right, darkblue, purple);
    transition: 0.3s ease-in;
    
}

.loginbtn:disabled{
    opacity: 0.4;
    cursor: not-allowed;
}
.img-container{
    height: 5rem;
    width: 100%;
    background: linear-gradient(to right, chocolate, orange);
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 2rem;
}
img{
    height: 2rem;
    max-width: 2rem;
}
.title-span{
    color: black;
    font-size: 24px;
    font-weight: bolder;
    letter-spacing: 2px;
}
u{
    color: white;
    text-decoration: none;
    font-style: normal;
    font-weight: bolder;
    font-size: 30px;
}
hr{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 0.10rem;
    width: 90%;
    background-color: black;
    border: none;
}
.newuser{
    position: relative;
    bottom: 2rem;
}
a{
    margin-left: 2px;
    color: indigo;
    text-decoration: underline;
    cursor: pointer;
}
.newuser-span{
    font-size: medium;
    font-weight: bold;
    letter-spacing: 1.2px;
}

.close-icon-container{
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    height: 2rem;
    width: 2rem;
    border-radius: 50%;
    background-color: rgb(245, 67, 67);
    color: white;
}

.custom-in-row{
    display: flex;
    justify-content: center;
    align-items: center;
    gap:1rem;
    height: 5rem;
    width: 30rem;
}