@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

:root {
    --Gray_600: #252525;
    --Gray_500: #6A6A6A;
    --Gray_400: #B4B4B4;
    --Gray_300: #DCDCDC;
    --Gray_200: #F1F1F1;
    --Gray_100: #F9F9F9;
    --White_100: #FFFFFF;
    --White_80: rgba(255, 255, 255, 0.8);
    --White_10: rgba(255, 255, 255, 0.1);
    --Pink_Dark: #BE0059;
    --Pink_Base: #DF0069;
    --Pink_Medium: #FA9EC6;
    --Pink_Light: #FFD5EC;
    --Pink_Lighter: #FDEAF6;
    --Blue_Dark: #19286D;
    --Blue_Base: #273C9A;
    --Blue_Medium: #A1BCED;
    --Blue_Light: #DDE7FD;
    --Blue_Lighter: #F5F8FF;
    --Alert_Red: #D7131C;
    --Alert_Red_Light: #FFF1F2;
    --Alert_Green: #258718;
    --Alert_Green_Light: #EEF8E9;
    --Alert_Yellow: #C78814;
    --Alert_Yellow_Light: #FFF9E9;
    --Alert_Blue: #327EA4;
    --Alert_Blue_Light: #E9F5FB;
}

/* Margin Top */
.mt-8 { margin-top: 8px !important; }
.mt-16 { margin-top: 16px !important; }
.mt-18 { margin-top: 18px !important; }
.mt-24 { margin-top: 24px !important; }
.mt-32 { margin-top: 32px !important; }
.mt-40 { margin-top: 40px !important; }
.mt-48 { margin-top: 48px !important; }

/* Margin Bottom */
.mb-8 { margin-bottom: 8px !important; }
.mb-16 { margin-bottom: 16px !important; }
.mb-18 { margin-bottom: 18px !important; }
.mb-24 { margin-bottom: 24px !important; }
.mb-32 { margin-bottom: 32px !important; }
.mb-40 { margin-bottom: 40px !important; }
.mb-48 { margin-bottom: 48px !important; }

/* Margin Left */
.ml-8 { margin-left: 8px !important; }
.ml-16 { margin-left: 16px !important; }
.ml-18 { margin-left: 18px !important; }
.ml-24 { margin-left: 24px !important; }
.ml-32 { margin-left: 32px !important; }
.ml-40 { margin-left: 40px !important; }
.ml-48 { margin-left: 48px !important; }

/* Margin Right */
.mr-8 { margin-right: 8px !important; }
.mr-16 { margin-right: 16px !important; }
.mr-18 { margin-right: 18px !important; }
.mr-24 { margin-right: 24px !important; }
.mr-32 { margin-right: 32px !important; }
.mr-40 { margin-right: 40px !important; }
.mr-48 { margin-right: 48px !important; }

/* Margin Y (Vertical) */
.my-8 { margin-top: 8px !important; margin-bottom: 8px !important; }
.my-16 { margin-top: 16px !important; margin-bottom: 16px !important; }
.my-18 { margin-top: 18px !important; margin-bottom: 18px !important; }
.my-24 { margin-top: 24px !important; margin-bottom: 24px !important; }
.my-32 { margin-top: 32px !important; margin-bottom: 32px !important; }
.my-40 { margin-top: 40px !important; margin-bottom: 40px !important; }
.my-48 { margin-top: 48px !important; margin-bottom: 48px !important; }

/* Margin X (Horizontal) */
.mx-8 { margin-left: 8px !important; margin-right: 8px !important; }
.mx-16 { margin-left: 16px !important; margin-right: 16px !important; }
.mx-18 { margin-left: 18px !important; margin-right: 18px !important; }
.mx-24 { margin-left: 24px !important; margin-right: 24px !important; }
.mx-32 { margin-left: 32px !important; margin-right: 32px !important; }
.mx-40 { margin-left: 40px !important; margin-right: 40px !important; }
.mx-48 { margin-left: 48px !important; margin-right: 48px !important; }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    border: 0;
    outline: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-family: "Inter", sans-serif;
}

html,
body {
    overflow: hidden;
    scroll-behavior: smooth;
}

.double-container {
    width: 100%;
    display: flex;
    align-items: stretch;
}

.double-container__left {
    width: 50%;
    background: var(--White_100);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.double-container__right {
    width: 50%;
    min-height: 100vh;
    position: sticky;
    top: 0;
    background: var(--Blue_Base);
}

.double-container__login-content {
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.double-container__login-content h1 {
    font-size: 26px;
    line-height: 125%;
    font-weight: 600;
    color: var(--Gray_600);
}

.double-container__login-content p {
    font-size: 16px;
    line-height: 150%;
    font-weight: 400;
    color: var(--Gray_500);
}

.double-container__form {
    text-align: left;
}

.double-container__form label {
    display:inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    color: var(--Gray_500);
}

.form-input {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--White_100);
    border: 1px solid var(--Gray_300);
    border-radius: 8px;
    padding: 8px 20px;
    transition: .4s;
}

.form-input:focus-within {
    border: 1px solid var(--Blue_Medium)!important;
}

.form-input .left-icon {
    font-size: 20px;
    color: var(--Gray_400);
    transition: .4s;
}

.form-input:focus-within .left-icon {
    color: var(--Blue_Base);
}

.form-input #span-show-hide-pass {
    font-size: 20px;
    color: var(--Gray_400);
    cursor: pointer;
}

.form-input input,
.form-input select {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    color: var(--Gray_500);
    padding: 10px 0;
    box-shadow: none;
    background: transparent;
}

.form-input input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 1000px var(--White_100) inset !important;
    box-shadow: 0 0 0 1000px var(--White_100) inset !important;
    -webkit-text-fill-color: inherit !important;
    transition: background-color 9999s ease-in-out 0s;
}

.form-outros {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--Gray_500);
}

.form-outros a {
    color: var(--Blue_Base);
    text-decoration: underline;
}

.form-checkbox input[type="checkbox"] {
  display: none;
  visibility: hidden;
}

.form-checkbox .cbx {
  margin: auto;
  -webkit-user-select: none;
  user-select: none;
  cursor: pointer;
}
.form-checkbox .cbx span {
  display: inline-block;
  vertical-align: middle;
  transform: translate3d(0, 0, 0);
}
.form-checkbox .cbx span:first-child {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  transform: scale(1);
  vertical-align: middle;
  border: 1px solid var(--Gray_300);
  transition: all 0.2s ease;
}
.form-checkbox .cbx span:first-child svg {
  position: absolute;
  top: 3px;
  left: 2px;
  fill: none;
  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 16px;
  stroke-dashoffset: 16px;
  transition: all 0.3s ease;
  transition-delay: 0.1s;
  transform: translate3d(0, 0, 0);
}
.form-checkbox .cbx span:first-child:before {
  content: "";
  width: 100%;
  height: 100%;
  background: var(--Blue_Base);
  display: block;
  transform: scale(0);
  opacity: 1;
  border-radius: 50%;
}
.form-checkbox .cbx span:last-child {
  padding-left: 8px;
}
.form-checkbox .cbx:hover span:first-child {
  border-color: var(--Blue_Base);
}

.form-checkbox .inp-cbx:checked + .cbx span:first-child {
  background: var(--Blue_Base);
  border-color: var(--Blue_Base);
  animation: wave-46 0.4s ease;
}
.form-checkbox .inp-cbx:checked + .cbx span:first-child svg {
  stroke-dashoffset: 0;
}
.form-checkbox .inp-cbx:checked + .cbx span:first-child:before {
  transform: scale(3.5);
  opacity: 0;
  transition: all 0.6s ease;
}

@keyframes wave-46 {
  50% {
    transform: scale(0.9);
  }
}

.btn-submit {
    border: 0;
    width: 100%;
    background: var(--Pink_Base);
    border-radius: 100px;
    padding: 18px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--White_100);
    transition: .4s;
    cursor: pointer;
}

.btn-submit:hover {
    box-shadow: 0px 0px 0px 2px var(--Pink_Base);
}

.form-divider {
    display: flex;
    align-items: center;
    margin: 24px 0;
}

.form-divider hr {
    height: 1px;
    flex-grow: 1;
    background: var(--Gray_300);
    margin: 0;
}

.form-divider span {
    margin: 0 16px;
    font-size: 10px;
    color: var(--Gray_400);
}

.btn-google {
    width: 100%;
    background: var(--White_100);
    border: 1px solid var(--Gray_300);
    border-radius: 100px;
    padding: 17px 32px;
    font-size: 16px;
    font-weight: 600;
    color: var(--Gray_600);
    display: flex;
    gap: 8px;
    align-items: center;
    justify-content: center;
    transition: .4s;
    cursor: pointer;
    
}

.btn-google:hover {
    background: var(--Gray_200);
    border: 1px solid var(--Gray_200);
}

.form-footer {
    font-size: 14px!important;
    margin-bottom: 0!important;
    margin-top: 40px;
}

.alert-message {
    font-size: 12px;
    padding: 18px 24px;
    text-align: left;
    border-radius: 6px;
    line-height: 150%;
}

.alert-message.error {
    background: var(--Alert_Red_Light);
    color: var(--Alert_Red);
}

.alert-message.success {
    background: var(--Alert_Green_Light);
    color: var(--Alert_Green);
}

.alert-message.warning {
    background: var(--Alert_Yellow_Light);
    color: var(--Alert_Yellow);
}

.alert-message.info {
    background: var(--Alert_Blue_Light);
    color: var(--Alert_Blue);
}

@media only screen and (max-width:1000px) {
    .double-container__left {
        width: 100%;
        min-height: 100vh;
    }

    .double-container__right {
        display: none;
    }
}