* {
  box-sizing: border-box;
}

body {
  font-family: 'Open Sans', Helvetica, Geneva, Verdana, Arial, sans-serif;
  background-color: #f4f4f4;
}
.loginPage {
  width: 100%;
  height: 100%;
  max-height: 100vh;
  display: flex
;
  flex-direction: column;
  align-items: center;
  padding-top: 60px;
}

.userFormLogin {
  background: #ffffff;
    padding: 20px 40px;
    display:-webkit-box;display:-moz-box;display:-ms-flexbox;display:-webkit-flex;
    display:flex;
    flex-direction: column;
    align-items: center;
    color: #777777;
    position: relative;
    width: 360px;
    margin-top: 20px;
}

.userForm__title {
  font-size: 26px;
  margin-bottom: 10px;
  padding-top: 10px;
  font-weight: 800;
  text-align: center;
  color: #333;
}
.userForm__field {
  margin-top: 20px;
  font-size: 15px;
  display: block;
}
.userForm__field_title {
  font-size: 16px;
  margin-bottom: 8px;
  display: block;
  padding-left: 5px;
  position: relative;
  width: fit-content;
}
.userForm__field input {
  border: 1px solid #f4f4f4;
    background-color: #f4f4f4;
    color: #777777;
    width: 100%;
    padding: 15px;
    font-size: 14px;
}
.userForm__actions {
  margin-top: 25px;
  margin-bottom: 20px;
}
.userForm__actions button {
    padding: 14px 30px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    border: 1px solid #f63440;
    background: #f63440;
    color: #ffffff;
    min-width: 130px;
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.35;
    width: 100%;
    outline: none;
    transition: all 0.4s ;
    -webkit-transition: all 0.4s ;
    -moz-transition: all 0.4s ;
    -ms-transition: all 0.4s ;
    -o-transition: all 0.4s ;
}

.userForm__actions button:hover {
  border-color: #ca2c36;
  background-color: #ca2c36;
  color: #ffffff;
}
.userForm__form {
  width: 100%;
  margin-bottom: 0;
}
fieldset {
  border: none;
  margin: 0;
    padding: 0;
}

.error {
  color: #f53541;
  font-size: 13px;
}

.noteMark {
  color: #f5333f;
    font-size: 24px;
    position: absolute;
    top: -2px;
    right: -11px;
}