.cabinet {
	text-align: left;
}

.cabinet input{
	font-family: 'Roboto',sans-serif;
	font-size: 1.4em;
	text-transform: none;
	padding-left: 10px;
	height: 40px;
	border-width: 1px;
	margin: 0;
	text-align: left;
}
.cabinet__content {
	width: 890px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	        padding-left: 50px;
	        padding-top: 50px;
	        padding-bottom: 50px;
}

.cabinet__heading {
	font-size: 2em;
	color: #000;
	padding: 20px 0;
}

.cabinet__row {
	margin: 30px 0;
	width: 500px;
}

.cabinet__left {
	width: 140px;
	font-size: 1.6em;
	color: #505050;
	line-height: 1.4;
}

.cabinet__right {
	width: 350px;
}


.cabinet__right > label {
	font-size: 1.4em;
	line-height: 1.3;
}

.cabinet__error-bubble {
	float: right;
	width: 280px;
	border: 1px solid #d42a2a;
	font-size: 1.4em;
	border-radius: 3px;
	padding: 15px;
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
	        margin-top: 40px;
	        margin-right: 25px;
	        line-height: 1.4;
	        position: relative;
}
.cabinet__error-bubble::before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 6px 0;
    border-color: transparent #fff transparent transparent;
    position: absolute;
    left: -6px;
    top: 25px;
    z-index: 1;
}
.cabinet__error-bubble::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 6px 6px 0;
    border-color: transparent #d42a2a transparent transparent;
    position: absolute;
    left: -7px;
    top: 25px;
}
input.cabinet__submit {
	text-align: center;
	padding: 0;
	width: 150px;
	font-size: 2em;
}