body {
    /* background: linear-gradient(145deg, rgb(255, 255, 255) 0%, rgba(219,219,219,1) 89%); */
    background-color: #eee;
    
    display: flex;
    flex-direction: column;    
    align-items: center;
    font-family: sans-serif
}

.back-section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    margin-bottom: 25px;
}

.form-section-large {
    width: 650px;
    height: auto;
    padding: 30px;
    padding-top: 15px;
    background-color: white;
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    margin-top: 60px;
}

.capa-section {
    width: 100%;
    height: 160px;
    border-radius: 8px;
    padding: 15px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    background-color: #ccc;
    background: linear-gradient(145deg, rgba(66,5,130,1) 0%, rgba(158,6,213,1) 89%);
    background-position: center;
    background-size: cover;
}

.btn-change-capa {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #666;
    cursor: pointer;
    transition-duration: 0.2s;

    -webkit-box-shadow: 10px 10px 61px -32px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 61px -32px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 61px -32px rgba(0,0,0,0.75);
}

.btn-change-capa:hover {
    background-color: #eee;
}

.avatar-section {
    width: 100px;
    height: 100px;
    border-radius: 100px;
    object-fit: cover;
    object-position: center;    
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    background-color: rgba(66,5,130,1);    
    border: 3px solid #fff;  
    margin-top: -40px;  
    margin-bottom: 30px;
    background-position: center;
    background-size: cover;
}

.btn-change-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    color: #666;
    cursor: pointer;
    margin-right: 6px;
    transition-duration: 0.2s;

    -webkit-box-shadow: 10px 10px 61px -32px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 61px -32px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 61px -32px rgba(0,0,0,0.75);
}

.btn-change-avatar:hover {
    background-color: #eee;
}

/* form */
.data-form-section {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.data-form {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
}

.data-form.column-6 {
    width: 46%;
}

.data-form label {
    font-size: 14px;
    color: #777;
}

.data-form .login-input {
    width: 100%;
    padding: 8px;
    border-radius: 8px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 16px;
    color: #777;
}

.login-button {
    width: 100%;
    padding: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    color: white;
    background: linear-gradient(145deg, rgba(66,5,130,1) 0%, rgba(158,6,213,1) 89%);
}

.login-button-outline {
    width: 100%;
    padding: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(66,5,130,1);
    border-radius: 8px;
    font-size: 16px;
    color: rgba(66,5,130,1);
    background: white;

}

.email-input {
    cursor: not-allowed;
}

/* form */


@media screen and (max-width: 799px) {
    .form-section {
        width: 90vw;
    }
}

.form-avatar-mini {
    width: 30px;
    height: 30px;
    object-fit: cover;
    border-radius: 50px;
    margin-right: 15px;
}

.small-mobile {
    cursor: pointer;
}