#profile {
    width: 100%;
    height: 100vh;
    background: #e0e0e0;
}
#profile .profile-container {
    margin: auto;
    padding: 10vw 4vw 2vw;
    display: flex;
    justify-content: center;
}
#user-profile .no-profile{
  display: none;
}
#profile .profile-container .logo {
  width: 100%;
  max-width: 300px;
  height: auto;
  padding: 0;
  border: 0;
  justify-content: center;
  display: flex;
  margin: auto;
  margin-bottom: 50px;
}

#profile .profile-container .logo img {
    width: 100%;
}
#profile .profile-div{
  width: 500px;
    background: white;
    padding: 60px;
    height: 500px;
    color: black;
    border-radius: 12px;
    box-shadow: 10px 10px #8080805c;
}
.hidden {
    display: none;
}
#profile .profile-container form {
    max-width: 348px;
    margin: auto;
}
#profile form {
    width: 100%;
}

#profile .form-item {
    width: 100%;
    margin: 0 auto 12px auto;
    vertical-align: top;
}

#profile .profile-container form label {
    font-size: 13px;
    font-weight: 300;
    color: black;
    text-transform: uppercase;
    letter-spacing: .3px;
}
#profile .form-item input, #edit-actions .form-item input[type=submit] {
    display: block;
    width: 100%;
    height: 37px;
    font-size: 16px;
    font-weight: 300;
    background: #fff;
    color: #26374d;
    padding: 0 12px;
    border: 1px solid #26374d;
    box-sizing: border-box;
    cursor: pointer;
}
#user-profile {
    text-align: center;
}
#user-profile a {
    display: inline-block;
    font-size: 13px;
    font-weight: 300;
    margin: 24px 48px 48px 48px;
    vertical-align: top;
    text-transform: uppercase;
    letter-spacing: .3px;
}
#user-profile a i {
    display: block;
    font-size: 80px;
    font-weight: 700;
}
#user-profile .exit {
    display: block;
    width: auto;
    max-width: 348px;
    height: 48px;
    line-height: 48px;
    font-size: 15px;
    font-weight: 700;
    margin: 0 auto;
    border-top: 1px solid #bcc8cf;
    box-sizing: border-box;
    text-transform: uppercase;
    cursor: pointer;
}

#edit-submit {
   display: block;
   height: 37px;
   font-size: 16px;
   font-weight: 300;
   background: #fff;
   color: #26374d;
   padding: 0 12px;
   border: 1px solid #26374d;
   box-sizing: border-box;
   cursor: pointer;
}
#edit-submit:hover{
  background-color: #e0e0e0;
}
#profile #edit-actions {
    text-align: center;
    justify-content: center;
    display: flex;
}
