
/* Variables  */
:root {
    --primary-color: rgb(116, 30, 215);
    --green: rgb(1, 206, 175);
    --yellow: rgb(255, 183, 1);
    --dark-gray: rgb(17, 17, 17);
    --new-primary-gradient-color: #1BCCAE;
    --new-secondary-gradient-color: #6B6BCD;
}

/* CSS Reset */
html {
    font-size: 100%;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* General CSS */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

a {
    color: var(--primary-color);
    font-size: 12px;
}

a:hover,
a:active {
    color: rgb(116, 30, 215) !important;
}

a:focus {
    color: rgb(116, 30, 215) !important;
}

.container-background {
    height: 100vh;
    padding: 100px 350px 0 125px;
    background: radial-gradient(115.29% 115% at -5.29% -2.39%, var(--green) 0%, var(--primary-color) 83.62%);
}

.container-background-login {
    height: 100vh;
    background: linear-gradient(55deg,  var(--new-primary-gradient-color) 70%, var(--new-secondary-gradient-color) 100%);
}

.container-background-forgotten-password, 
.container-background-sign-up,
.container-admin-background,
.need-reset-password-background{
    height: 100vh;
    background: linear-gradient(55deg,  var(--new-primary-gradient-color) 70%, var(--new-secondary-gradient-color) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
}

.container-wrapper {
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100%;
    width: 100%;
    padding: 20px 32px;
}

.complete-sing-up-background {
    background: linear-gradient(55deg,  var(--new-primary-gradient-color) 70%, var(--new-secondary-gradient-color) 100%);

    display: flex;
    justify-content: center;
    align-items: center;
}

.login-form, .login-admin-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 20px;

    background-color: #fff;
    border-radius: 50px;
    padding: 50px;
}

.resetPassword-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    padding: 50px;
    border: #333 1px solid;
    margin-top: 10%;
}

.form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    max-width: 350px;
}

.form {
    display: flex;
    flex-direction: column;
}

.background-image-login {
    position: fixed;
    left: -255px;
    bottom: -99px;
}

.background-image {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 800px;
}

.form-title {
    font-size: 26px;
    font-weight: 700;
}

.form-subtitle {
    margin-bottom: 24px;
}

.email-input {
    margin-bottom: 16px;
}

.form-button {
    margin-top: 24px !important;
    width: 200px;
    align-self: center;
    border-radius: 20px;
}

/* Helpers */
.d-flex {
    display: flex;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.justify-content-end {
    justify-content: end;
}

.m-b-15 {
    margin-bottom: 15px;
}
/* Login Page */

.login-logo {
    width: 325px;
    height: 100px;
    margin-bottom: 25px;
}

.login-form-logo, 
.forgotten-password-form-logo, 
.sign-up-form-logo, 
.complete-sing-up-form-logo,
.login-admin-form-logo,
.need-reset-password-form-logo{
    width: 250px;
    margin-bottom: 25px;
}

.image-container {
    display: flex;
    justify-content: flex-end;
    width: 65%;
    height: 400px;
    padding: 20px;
}

.login-text {
    color: white;
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
}

.login-form-text {
    color: white;
    font-size: 18px;
    line-height: 27px;
    font-weight: 500;
    width: 250px;
}

.email-form, 
.sign-up-form-container, 
.need-reset-password-container,
.complete-sing-up-form{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px;
    max-width: 500px;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 50px;
}

.complete-sing-up-form{
    max-width: 100%;
}

/* Forgotten Password Page */

.forgotten-password-form,
.sing-up-form,
.need-reset-password-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

.forgotten-password-container,.sing-up-container{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    max-width: 400px;
}

.forgotten-password-form-button, .need-reset-password-form-button {
    width: 100%;
    border-radius: 20px;
}

.login-form-password {
    margin-bottom: 20px;
}

.checkbox-label {
    font-size: 12px;
    color: rgb(154, 158, 182);
    font-weight: 400;
    margin-left: 8px;
}

/* Remember password page */
.try-again-button {
    padding-top: 15px;
}

/* Sign up page */
.login-link {
    margin-top: 20px;
}

.sing-up-form-button {
    width: 100%;
    border-radius: 20px;
    margin-top: 20px;
}

.create-account-button {
    display: none;
    width: 100%;
}

.complete-sing-up-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.two-factor-form {
    height: 100vh;
    padding: 200px 100px 48px 100px;
}

/* Sidebar */
.sidebar {
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	transition: all 0.5s;
	background: #1BCCAF;
	height: 100vh;
	width: 250px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11 !important;
	padding-top: 25px;
	padding-left: 25px;
}

.logo {
	width: 186px;
	height: 53px;
}

.login-logo-branco{
    display: none;
}

/* Two-factor auth */
.contact-card {
    border: 1px solid #9A9EB6;
    border-radius: 8px;
    margin-bottom: 25px;
    display: flex;
    align-items: flex-start;
    padding: 10px;
}

.contact-card.active {
    border-color: #741ED7;
}

.contact-label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-subtext {
    color: #9A9EB6;
    font-size: 14px;
    margin-bottom: 0;
}

.contact-icon {
    margin-right: 15px;
}

.validate-code-button,
.resend-code-button {
    margin-bottom: 25px;
}

.code-input-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.code-input {
	width: 45px;
    padding: 0 !important;
    padding-left: 16px !important;
}

.recaptcha-box {
    display: flex;
    justify-content: center;
}

/* Responsividade login */
@media only screen and (max-width: 1385px) {
    .background-image-login {
        left: -481px;
    }

    .background-image {
        height: 600px;
    }

}

@media only screen and (max-width: 991px) {
    .background-image-login, .background-image {
        display: none;
    }

    .login-logo-branco {
        display: flex;
        width: 250px;
        margin-bottom: 25px;
    }

    .container-wrapper {
        flex-direction: column;
        justify-content: center;
        gap: 20px;
    }

    .image-container {
        flex-direction: column;
        height: unset;
        align-items: center;
    }

    .container-background {
        padding: 25px 50px;
        display: flex;
        flex-direction: column;
        align-items: center;
        height: unset;
    }

    .container-background-login {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .login-logo {
        margin-bottom: 10px;
    }

    .login-form-logo {
        display: none;
    }

    .login-text {
        font-size: 16px;
        text-align: center;
        width: unset;
    }

    .login-form-text {
        font-size: 16px;
        text-align: center;
    }
}

@media only scren and (max-width: 768px) {
    .background-image {
        display: none;
    }

    .email-form, .login-form {
        padding: 25px 50px;
    }
}

/* Confirmação de cadastro */
.repeat-password-error {
	color: #d52929;
    display: none;
}

.fullwidth {
    width: 100%;
}