::placeholder{
    color: #7A849D;
    opacity: 1;
}

input[type="text"],
input[type="password"],
input[type="email"]{
    border-radius: 10px;
    border: 1px solid #CCDAE8;
    background: #EDF3FF;
    padding: 8px 16px 8px 16px;
    height: 22px;
    width: calc(100% - 2px - 32px);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #454F69;
}

input[type="text"].error,
input[type="password"].error,
input[type="email"].error
{
    border-color: #FF4848;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
textarea:focus
{
    border-color: #2B8DFF;
}

textarea{
    border-radius: 8px;
    border: 1px solid #CCDAE8;
    background: #EDF3FF;
    padding: 8px 16px 8px 16px;
    height: 120px;
    width: calc(100% - 2px - 32px);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 22px;
    color: #454F69;
}

input[type="submit"]{
    padding: 14px 32px;
    cursor: pointer;
    color: #EAECEE;
    text-align: center;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px;
    border: 0;
    border-radius: 10px;
    background: linear-gradient(88deg, #003FFF 1.46%, #006BFF 62.42%, #0085FF 126.76%);
}

input[type="submit"]:hover{
    background: linear-gradient(88deg, #0633BB 1.46%, #0034D2 1.47%, #024EB7 64.74%, #06F 126.76%);
}

.form-item .form-item-message{
    color: #E51C23;
    font-family: "Open Sans";
    font-size: 11px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px;
    position: absolute;
    left: 0;
    top: calc(100% + 1px);
}

.form-item .form-item-message.form-item-message-error{
    color: #E51C23;
}