

.profile-img{
    width: 6rem;
    height: 6rem;
    border-radius: 3rem;
    object-fit: cover;
    box-shadow: rgba(255, 255, 255, 0.16) 0px 1px 4px, rgb(255, 255, 255) 0px 0px 0px 3px;
}
.profile-name {
    font-size: 1.7rem;
    text-align: center;
    line-height: 2.2rem;
    margin-top: 1rem;
    margin-bottom: 2rem;
}
.profile-statistics {
    width: 96%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-right: 1rem;
    margin-left: 1rem;

}

.profile-table {
    width: 100%;
    text-align: center;

}
.profile-table tr:nth-child(1){
    font-weight: 700;
    font-size: 1.2rem;
}
.profile-edit-two-col{
    display: grid;
    row-gap: 1rem;
    column-gap: 1rem;
    grid-template-columns: repeat(1,1fr);
}
.profile-edit-pp-container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile-edit-pp-container input[type="file"]{
    display: none;
}
.profile-edit-consts{
    display: flex;
    flex-direction: column;
    justify-content: space-between;

}
.profile-edit-consts p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.strong{
    font-weight: 600;
    font-size: 1.3rem;
}
.profile-edit-email-section {
    padding-left: 1rem;
}
.profile-edit-email-section a {
    font-size: .9rem;
    margin-top: -.5rem;
}
.profile-edit-email-section p.red {
    color: red;
    font-weight: bold;
}
.profile-edit-email-section p.green{
    font-weight: bold;
    color: rgb(0, 255, 0);
}
input:disabled{
    cursor: not-allowed;
}
@media screen and (min-width:450px) {

    .profile-edit-two-col{
  display: grid;
      grid-template-columns: repeat(2,1fr);
      column-gap: 2rem;
    }
  }