@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.wrapper {
    position: relative;
    max-width: 430px;
    width: 100%;
    background: #fff;
    padding: 34px;
    border-radius: 6px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    margin: 0 auto;
}

.wrapper h2 {
    position: relative;
    font-size: 22px;
    font-weight: 600;
    color: #333;
}

.wrapper h2::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 28px;
    border-radius: 12px;
    background: #C51D39;
}

#form-title {
    text-align: center;
    margin-bottom: 20px;
}

.wrapper form {
    margin-top: 30px;
}

.wrapper form .input-box {
    height: 52px;
    margin: 18px 0;
    position: relative;
}

form .input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    padding: 0 15px;
    font-size: 17px;
    font-weight: 400;
    color: #333;
    border: 1.5px solid #C7BEBE;
    border-bottom-width: 2.5px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.input-box input:focus,
.input-box input:valid {
    border-color: #4070f4;
}

form .policy {
    display: flex;
    align-items: center;
}

.input-box.button input {
    color: #fff;
    letter-spacing: 1px;
    border: none;
    background: #C51D39;
    cursor: pointer;
}

.input-box.button input:hover {
    background: white;
    color: #C51D39;
    border: 5px solid;
}

form .text h3 {
    color: #333;
    width: 100%;
    text-align: center;
}

form .text h3 a {
    color: #C51D39;
    text-decoration: none;
}

form .text h3 a:hover {
    text-decoration: underline;
}

.input-box input.form-control {
    width: 100%;
    padding: 10px;
    box-sizing: border-box;
}

.input-box input[type="password"] {
    padding-right: 30px;
}

.input-box.button input[type="submit"] {
    width: 100%;
    padding: 10px;
    cursor: pointer;
}

i.bx {
    cursor: pointer;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
}

.error,
#sign_message,
#error-captcha {
    font-size: 9px;
    color: red;
    display: block;
    text-align: center;
}

a.login-link,
a.signup-link,
a.recover-link {
    color: #C51D39;
    text-decoration: underline;
    font-size: 14px;
}

#show-captcha {
    display: none;
}

#show-me-click-sign-up,
#show-me-click {
    display: none;
    color: #C51D39;
    background-color: white;
    border: 2px solid #C51D39;
    cursor: not-allowed;
}

.hidden {
    display: none;
}

.show {
    display: block;
}

.recaptcha-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    transform: scale(1);
    transform-origin: center;
    margin: 10px 0;
}

.g-recaptcha {
    width: auto !important;
}

input::placeholder {
    color: red;
    font-size: 12px;
}
.error-text {
    color: red;
    font-size: 9px;
    display: block;
    text-align: center;
}
input.error-placeholder::placeholder {
    color: red;
    font-size: 9px;
}
@media (max-width: 600px) {
    .recaptcha-wrapper {
        transform: scale(1);
    }
}
