.form__submit {
    display: flex;
    justify-content: center;
}

.form__submit-btn {
    height: 100%;
    width: 100%;
    border-radius: 5px;
    box-shadow: inset 0px 0px 31px 0px rgba(255, 255, 255, 0.25);
    background: rgb(54, 108, 255);
    font-size: 28px;
    font-weight: 500;
    justify-content: center;
}

.account-form__title {
    text-align: center;
    margin-bottom: 17px;
    font-weight: 600;
    font-size: 28px;
}

.account-form__block {
    width: 100%;
    margin: 0 auto 10px auto;
    display: block;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    padding: 25px;
    background: #fff;
    max-width: 590px;
}

.account-form_profile {
    border: 1px solid #E0E0E0;
}

.account-form_profile .account-form__form {
    padding: 20px;
}

/* Account Module */
.account-module__user {
    display: flex;
    align-items: center;
    margin-bottom: 2px;
    background: #F2F2F2;
    border: 1px solid #E0E0E0;
    padding: 16px;
    font-weight: 500;
    font-size: 18px;
    color: #000000;
}

.account-module .account-module__user:before {
    content: '';
    display: block;
    background: url('../img/account/user.svg') no-repeat 50% 50%;
    width: 38px;
    height: 38px;
    background-size: cover;
    margin-right: 12px;
}

.account-module .account-module__links {
    padding: 0;
    list-style: none;
	margin: 0;
}

.account-module .account-module__links .account-module__link {
    margin-bottom: 2px;
	background: #FFFFFF;
    border: 1px solid #E0E0E0;
}

.account-module .account-module__links .account-module__link a {
    display: flex;
    align-items: center;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    color: #000000;
	text-decoration: none;
	padding: 18px 16px;
	position: relative;
}

.account-module .account-module__links .account-module__link a:hover {
    text-decoration: none;
}

.account-module__link-icon {
    margin-right: 12px;
}

.account-module .account-module__links .account-module__link a:hover .account-module__link-text {
    color: #366cff;
}

.account-module .account-module__links .account-module__link.active .account-module__link-text {
    color: #366cff;
}

.account-module .account-module__links .account-module__link a:hover svg, 
.account-module .account-module__links .account-module__link.active svg, 
.account-module .account-module__links .account-module__link a:hover svg path, 
.account-module .account-module__links .account-module__link.active svg path {
    fill: #366cff;
}


.account-module .account-module__links .account-module__link a:after {
    content: '';
    display: block;
    float: right;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    width: 8px;
    height: 8px;
    margin-right: -3px;
    margin-top: 3px;
    border-bottom: 1px solid #000000;
    border-left: 1px solid #000000;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    position: absolute;
    right: 24px;
}

.account-module .account-module__links .account-module__link a:hover:after {
    border-bottom: 1px solid #366cff;
    border-left: 1px solid #366cff;
}

.account-module .account-module__links .account-module__link.active a:after {
    border-bottom: 1px solid #366cff;
    border-left: 1px solid #366cff;
}


.columns_account table {
    border-collapse: collapse;
    border-top: 1px solid #E0E0E0;
	width: 100%;
}

.columns_account tr {
    border-bottom: 1px solid #E0E0E0;
}

.columns_account td {
    padding: 12px;
	font-weight: 300;
    font-size: 17px;
    color: #000000;
	font-weight: 400;
}

.columns_account thead td {
	font-weight: 700;
}

.columns_account td a {
    font-weight: 400;
    font-size: 17px;
    color: #000000;
	text-decoration: underline;	
}

.columns_account td a:hover {
	text-decoration: none;	
}