.profile-page{
    padding:50px 0 80px;
}

.profile-hero{
    padding:30px 0;
}

.section-label{
    display:inline-block;
    padding:8px 18px;
    border:1px solid rgba(0,229,176,.25);
    border-radius:999px;
    color:#00e5b0;
    margin-bottom:20px;
    font-weight:600;
}

.profile-hero h1{
    font-size:56px;
    margin-bottom:15px;
}

.profile-subtitle{
    max-width:650px;
    color:#b8b8b8;
    font-size:18px;
    line-height:1.7;
}

.profile-section{
    margin-top:40px;
}

.profile-card{
    background:rgba(255,255,255,.03);
    border:1px solid rgba(0,229,176,.12);
    border-radius:22px;
    padding:40px;
    backdrop-filter:blur(18px);
}

.profile-card-head{
    display:flex;
    align-items:center;
    gap:20px;
    margin-bottom:35px;
}

.profile-avatar-large{
    width:85px;
    height:85px;
    border-radius:50%;
    background:#00e5b0;
    color:#081511;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:700;
}

.profile-card-head h2{
    margin:0;
}

.profile-card-head p{
    margin-top:8px;
    color:#b8b8b8;
}
.profile-form{
    width:100%;
}

.form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:22px;
}

.form-grid label{
    display:flex;
    flex-direction:column;
    gap:10px;
    color:white;
    font-weight:600;
}

.full-width{
    grid-column:1 / -1;
}

.profile-form input,
.profile-form textarea{

    width:100%;

    padding:14px 18px;

    border-radius:12px;

    border:1px solid rgba(255,255,255,.08);

    background:#111;

    color:white;

    font-size:15px;

    transition:.25s;
}

.profile-form textarea{

    min-height:130px;

    resize:vertical;
}
.profile-form input:focus,
.profile-form textarea:focus{

    outline:none;

    border-color:#00e5b0;

    box-shadow:0 0 18px rgba(0,229,176,.15);

}

.profile-actions{

    margin-top:35px;

    display:flex;

    align-items:center;

    gap:25px;

}

.profile-message{

    color:#00e5b0;

    font-weight:600;

}
@media(max-width:768px){

.profile-hero h1{

    font-size:40px;

}

.form-grid{

    grid-template-columns:1fr;

}

.profile-card{

    padding:25px;

}

.profile-card-head{

    flex-direction:column;

    align-items:flex-start;

}

}
.btn-secondary{
  padding:14px 24px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.15);
  color:white;
  text-decoration:none;
  font-weight:700;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

.btn-secondary:hover{
  border-color:#00e5b0;
  color:#00e5b0;
}