.profile-login{
    padding: 20px;
    margin: 23vh 0 0 0;
}
.profile-login input{
    width: 100%;
    height: 50px;
    border: 1px solid #ddd;
    border-radius: 12px;
    padding: 0 15px;
    margin-bottom: 15px;
    font-family: inherit;
    text-align: center;
}
.profile-login button{
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #f58220;
    color: #fff;
    cursor: pointer;
    font-family: inherit;
}
.profile-login h2{
        font-size: 18px;
}
.resend-box{
    margin-top:15px;
    text-align:center;
}
.resend-box #resend-code{
    font-family: inherit;
    color: inherit;
    font-size: inherit;
    text-decoration: none;
}
.login-message{
    display: none;
    margin: 15px 0;
    padding: 12px;
    border-radius: 10px;
    font-size: 14px;
}

.login-message.success{
    display:block;
    background:#e8f8ee;
    color:#0f7a35;
}

.login-message.error{
    display:block;
    background:#fdeaea;
    color:#c62828;
}
.profile-box{
    width:95%;
    max-width:520px;
    margin:20px auto;
    padding:20px;
}
.profile-header{
    display:flex;
    justify-content:flex-end;
    margin-bottom:20px;
}
.logout-btn{
    display:flex;
    align-items:center;
    justify-content:center;
    padding:10px 18px;
    border-radius:12px;
    background:#fff1f1;
    color:#d32f2f;
    font-size:14px;
    text-decoration:none;
    transition:.3s;
}
.logout-btn:hover{
    background:#ffe0e0;
}
.profile-form{
    background:#ffffff;
    border-radius:20px;
    padding:24px;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}
.form-group{
    margin-bottom:18px;
}
.form-group label{
    display:block;
    margin-bottom:8px;
    font-size:14px;
    color:#555;
}
.form-group select,
.form-group input{
    width:100%;
    height:48px;
    border:1px solid #e5e5e5;
    border-radius:12px;
    padding:0 15px;
    font-family:inherit;
    font-size:14px;
    background:#fafafa;
    transition:.3s;
}
.form-group input:focus{
    outline:none;
    border-color:#f58220;
    background:#fff;
}
.form-group input.readonly{
    background:#f1f1f1;
    color:#888;
    cursor:not-allowed;
}
.save-profile-btn{
    width: 100%;
    height: 50px;
    border: none;
    border-radius: 10px;
    background: #f58220;
    color: white;
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
    transition: .3s;
}
.save-profile-btn:hover{
    opacity:.9;
}
.profile-message{
    display:none;
    margin-top:15px;
    padding:12px;
    border-radius:12px;
    background:#e9f8ee;
    color:#18833b;
    text-align:center;
    font-size:14px;
}
.site-version{
    text-align: center;
    color: #999;
    font-size: 12px;
    margin: 40px 0 20px;
}