p {
    color: white;
}
.box {
    position: absolute;
    top: 130px;
    right: 0;
    left: 90px;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    
    
}
.container {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
    border-radius: 15px;
    flex: 1;
    display: flex;
    max-width: 350px;
    height: 600px;
    border: 2px solid white;
    box-shadow: 2px 2px 5px rgba(0, 0, 255, 0.432);
    background-color: rgba(153, 142, 142, 0.61);
}
.img-box {
    height: 150px;
    width: 100%;
    border: 2px solid white;
    border-radius: 15px;
    position: relative;
}
.bg-img-div {
    height: 150px;
    width: 100%;
    border-radius: 15px;
}
.bg-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 15px;
    object-position: center;
}
.profile-pic-div {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    position: absolute;
    top: 60px;
    left: 5px;
    box-shadow: 2px 2px 5px rgb(0, 0, 0);
}
.profile-pic {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
}
.other-details {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    margin: 0;
    display: flex;
    
    align-items: center;
    flex-direction: column;
    margin-top: 8px;
    margin-bottom: 20px;
   
}
.mail-div , .genre-div , .hobby-div , .whatsapp-div  , .address-div , .relationship-status-div , .name-div{
   
    height: fit-content;
    border-radius: 10px;
    padding-left: 10px;
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-style: solid;
    border-width: 1px;
    border-color: rgba(5, 5, 129, 0.863);
    box-shadow: 2px 2px 5px rgba(1, 9, 24, 0.603);
    background-color: rgba(128, 128, 128, 0.521);
}
.other-details p {
    margin: 0;
    margin-right: 8px;
    
}
.other-details input {
     height: 30px;
    background-color: transparent;
    margin-top: 6px;
    margin-bottom: 6px;
    flex: 1;
    border: none;
    color: white;
    margin-right: 10px;
    background-color: rgba(47, 47, 58, 0.555);
    padding-left: 10px;
    border-radius: 15px;
}
.rlsn-status {
    width: 90px;
}
.genre:focus , .name:focus ,.email:focus , .hobby:focus , .address:focus , .rlsn-status:focus {
    outline: 0;
    border: 0;
} 
.name::placeholder ,.email::placeholder , .hobby::placeholder , .address::placeholder , .rlsn-status::placeholder {
    color: rgba(255, 232, 232, 0.925);
}
.save-btn {
    color: white;
    height: 35px;
    width: 70px;
    border-radius: 15px;
    border: 1px solid rgba(0, 0, 0, 0.589);
    background-color: rgba(47, 47, 58, 0.555);
    font-size: 16px;
    cursor: pointer;
    box-shadow: -2px -2px 5px black;
}
.save-btn:hover {
    color: rgb(0, 0, 0) ;
    background-color: rgb(255, 255, 255);
}
.save-btn:active {
    box-shadow: none;
    opacity: 0.7;
}
.img-logo {
    height: 40px;
}
a {
    text-decoration: none;
}