
@import url('https://fonts.googleapis.com/css?family=Raleway:200,300,400,500,600,700&display=swap');

html, body {
    height: 100%;
}

body {
    direction: ltr;
    font-family: 'Raleway', sans-serif;
}

*:focus {
    outline: none;
}

.global-container {
    background-size: cover;
    background-position: center;
    min-height: 100%;
    display: flex;
    flex: 1;
    align-items: center;
}

.right-container {
    background-color: hsla(0, 0%, 100%, 0.7);
    box-shadow: 0 0 20px 0px hsla(0, 0%, 0%, 0.1);
}

.right-container .logo {
    width: 100%;
}

.header-text {
    text-transform: uppercase;
    font-size: 34px;
    color: #2c085b;
    font-weight: 700;
    line-height: initial;
}

.header-text-sub {
    color: #2c085b;
    font-weight: 600;
    font-size: 21px;
    line-height: initial;
}

.form-label {
    color: #2c085b;
    font-size: 15px;
    font-weight: 600;
    align-items: center;
    display: flex;
    justify-content: flex-end;
    margin: 0;
}
.form-label label {
    margin: 0;
}

.form-btn {
    border: none;
    background-color: #ef0739;
    border-radius: 25px;
    padding: 15px 20px;
    font-weight: 500;
    color: white;
}

.form-help {
    text-align: center;
    font-size: 15px;
    color: #2c085b;
    line-height: initial;
}

.form-widget {
    border: 1px solid #2c085b;
    padding: 15px;
    font-size: 15px;
    width: 100%;
}

.message {
    padding: 10px 10px;
    font-weight: 500;
}

.message.message-success {
    color: #2c085b;
}

.message.message-error {
    color: #ef0739
}

.form-errors ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 0;
}

.form-errors ul li {
    padding: 5px;
    font-size: 15px;
    color: #ef0739
}

@media (max-width: 600px) {
    .header-text {
        font-size: 24px;
    }
    .header-text-sub {
        font-size: 16px;
    }

    .form-label {
        font-size: 12px;
    }
    .form-widget {
        padding: 10px;
        font-size: 12px;
    }

    .form-btn {
        padding: 10px 15px;
        font-size: 12px;
    }
    .form-help {
        font-size: 12px;
    }
    .form-errors ul li {
        font-size: 12px;
    }
}

@media (max-width: 991px) {
    .left-container {
        text-align: center;
    }
    .form-group {
        margin-bottom: 8px;
    }
}
