.alert {
    border-radius: 6px;
    border-width: 3px;
    padding: 16px 24px;
    width: 200px;
    font-size: 14px;
    background: #fff;
    margin-bottom: 10px;
    line-height: 1.3;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    position: relative;
    opacity: 0;
    transform: translateX(100%);
    transition: all .8s ease;
}

.alert span {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9em;
    font-weight: bold;
}

.alert.visible {
    opacity: 1;
    transform: translateX(0);
    transition: all .8s ease;
}

.alert svg {
    position: absolute;
    right: 8px;
    width: 16px;
    height: 16px;
    top: 50%;
    transform: translateY(-50%);
}

.alert.error {
    border-color: #ED1C24;
    background: #FCDCDC;
    color: #ED1C24;
}
.alert.error svg {
    fill: #ED1C24;
}

.alert.success {
    border-color: #58C033;
    background: #dcf2dd;
    color: #58C033;
}
.alert.success svg {
    fill: #58C033;
}

.alert.info {
    border-color: #000DA8;
    background: #e4f0f7;
    color: #000DA8;
}
.alert.info svg {
    fill: #000DA8;
}

.alert.neutral {
    border-color: #95a5a6;
    background: #ffffff;
    color: #95a5a6;
}
.alert.info svg {
    fill: #95a5a6;
}

.alert__wrapper {
    position: fixed;
    right: 10px;
    top: 100px;
}

form label.error {
    color: #ff163c;
    margin: -15px 0px 10px 65px;
    display: block;
    font-size: 12px;
    line-height: 15px;
    color: #FF163C;
}

.login__message {
    font-size: 1em;
    line-height: 19px;
    margin-bottom: 23px;
    display: inline-block;
    max-width: 480px;
    text-align: center;
}
