#cloud_flare_captcha{
    left: unset;
    right: unset;
    top: unset;
    bottom: 0;
}
.top-container{
    background-color: white;
}
.login-container{
    min-height: 80vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 0 16px;
}
.login-content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 380px;
    width: 100%;
    margin: auto;
    gap: 32px;
}
.login-top-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-align: center;
}
.login-header{
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.login-form-section{
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
    position: relative;
}
.submit-btn,
.google-button{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--color-light-2);
    border-radius: 989px;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    transition: all 0.1s ease-in-out;
    text-decoration: none;
}
.google-button:hover{
    background-color: var(--color-light-1);
    cursor: pointer;
}
.submit-btn{
    margin-top: 24px;
    background-color: var(--color-paragraph);
    color: white;
    transition: all 0.4s ease;
}
.submit-btn:hover{
    background-color: var(--color-paragraph);
    cursor: pointer;
}
.or-section{
    position: relative;
    width: 100%;
    height: 1px;
    background-color: var(--color-stroke);
    margin: 10px 0px;
}
.or-text{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 0px 16px;
    color: var(--color-disable);
    font-size: 12px;
    font-weight: 500;
    line-height: 16px;
}
#login-form{
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.password{
    position: relative;
}
.eye{
    position: absolute;
    bottom: 3px;
    right: 12px;
    transform: translateY(-50%);
    cursor: pointer;
}
.remember-forgot{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.remember-forgot>div{
    display: inline-flex;
    gap: 8px;
    align-items: center;
}
.forgot{
    color: var(--color-paragraph);
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
}
.remember input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid #555; /* border color */
  border-radius: 4px;
  cursor: pointer;
  position: relative;
}

/* Background when checked */
.remember input[type="checkbox"]:checked {
  background-color: var(--purple);
  border-color: var(--purple);
}

/* Checkmark */
.remember input[type="checkbox"]:checked::after {
  content: "✔";
  color: white;
  font-size: 14px;
  position: absolute;
  top: -2px;
  left: 2px;
}
.remember-lable{
    cursor: pointer;
}
.no-dec{
    text-decoration: none;
    color: var(--color-paragraph);
}
.bold{
    font-weight: 700 !important;
}
/* bottom section */
.page-bottom{
    color: var(--color-disable);
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-align: center;
}
.error-message{
    left: unset;
    top: 85px;
    right: 0;
    width: 100%;
}
.success-message{
    position: absolute;
    top: 55px;
}
