body {
    font-family: 'Raleway', sans-serif;
    font-weight: 300;
    /*background-image: linear-gradient(to top, #2a0662 20%, #68014d 100%);
    background-repeat: repeat-x;
    color: #fff;*/
}

.body-mask {
    display: flex;
    width: 100%;
    height: 100vh;
    background: #fff;
    color: #222;
    justify-content: center;
    align-items: center;
}

.form-container {
    max-width: 480px;
}

.form-group {
    margin-bottom: 20px;
}

.error-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.error-main {
    text-align: center;
}

.error-number {
    font-size: 62px;
}

.error-subtitle {
    font-size: 32px;
}

.logo {
    width: 110px;
}



.form-error {
    background: #c13838;
    color: #fff;
    padding: 4px 10px;
    border-radius: 3px;
    margin: 10px 0 0 0;
    display: inline-block;
    font-size: 13px;
    position: relative;
}

.form-error:before {
    content: ' ';
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #c13838 transparent;
    position: absolute;
    top: -8px;
}


.form-control {
    border-radius: 3px;
}

.form-control:focus,
.form-control:focus-visible,
.form-control:active {
    outline: none;
    box-shadow: none;
}

.form-group label {
    font-weight: 500;
    font-size: 14px;
}


.alert {
    border-radius: 3px;
    padding: 10px 5px;
}

.unsubscribe {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    background: #eee;
}

.unsubscribe-form {
    padding: 45px;
    background: #fff;
    text-align: center;
    border-radius: 3px;
}

.unsubscribe-form h1 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 0;
}