@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800&display=swap');

:root {
    --succes-color: #2ecc71;;
    --error-color: #e74c3c;
}


* {
    box-sizing: border-box;
}

.wrapper {
    background-color: #f9fafb;
    font-family: 'Open Sans', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    flex-wrap: wrap;
    min-height: 100vh;
}

.container {
    width: 100%;
    max-width: 1000px;
    background: #f5f3f3;
}

h2 {
    text-align: center;
    margin: 0 0 20px;
}

.form {
    padding: 30px 40px;
    box-shadow: 0 2px 10px rgb(0 0 0 / 30%);
    background: #fff;
    border-radius: 5px;
    max-width: 80%;
    margin: 25px auto;

}

.form-control {
    margin-bottom: 10px;
    padding-bottom: 20px;
    position: relative;
}

.form-control label {
    color: #777;
    display: block;
    margin-bottom: 5px;
}

.form-control input {
    border: 2px solid #f0f0f0;
    border-radius: 4px;
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
}

.form-control input:focus {
    outline: 0;
    border-color: #777;

}

.form-control.success input {
    border-color: var(--succes-color);
}

.form-control.custom_error input {
    border-color: var(--error-color);
}

.form-control small {
    color: var(--error-color);
    position: absolute;
    bottom: 0;
    left: 0;
    visibility: hidden;
}

.form-control.custom_error small {
    visibility: visible;
}

.form button {
    cursor: pointer;
    background-color: #9F70ED;
    border: 2px solid #9F70ED;
    border-radius: 4px;
    color: #fff;
    display: block;
    padding: 10px;
    font-size: 16px;
    margin-top: 20px;
    width: 100%;
}

.login_leadrebel, .signup_leadrebel {
    text-align: center;
    cursor: pointer;
    background-color: rgb(237, 108, 137);
    border: 2px solid rgb(237, 108, 137);
    border-radius: 4px;
    display: block;
    padding: 10px;
    font-size: 16px;
    margin-top: 20px;
    width: 100%;
    font-weight: 400;
    color: white;
    text-decoration: none;
}

.login_leadrebel:hover, .signup_leadrebel:hover {
    text-decoration: none;
    color: white;
}

#leadrebel_code {
    width: 100%;
}

.script_code {
    padding: 30px 0;
    display: none;
    max-width: 80%;
    margin: 0 auto;
}

.incorrect_data, .email_taken {
    display: none;
    color: red;
}

.custom_desc {
    max-width: 85%;
    padding: 25px;
    text-align: center;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.4;
}

.hide {
    display: none !important;
}

.header_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 5px;
    font-family: 'Open Sans', sans-serif;
}

.header_row img {
    max-width: 238px;
}


.go_to_leadrebel {
    position: relative;
    line-height: 47px;
    color: #fff;
    font-weight: 600;
    padding: 0 21px;
    min-width: 141px;
    border: solid 1px #ff6288;
    box-sizing: border-box;
    box-shadow: 0 3px 3.8px 0.2px #0003;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    background: #ff6288;
    text-decoration: none;
    display: block;
}

.go_to_leadrebel:hover {
    color: #ff6288;
    background: white;
}

@media (max-width: 600px) {
    .header_row {
        flex-direction: column;
    }

    .go_to_leadrebel {
        margin: 15px auto;
    }
}

.script_code.show {
    display: block;
}

.sign-out {
    text-align: center;
    margin-bottom: 3em;
}

.sign-out button {
    line-height: 47px;
    color: #fff;
    font-weight: 600;
    padding: 0 21px;
    min-width: 141px;
    border: solid 1px #ff6288;
    box-sizing: border-box;
    box-shadow: 0 3px 3.8px 0.2px #0003;
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    background: #ff6288;
    text-decoration: none;
    cursor: pointer;
}