@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* {
    font-family: "IBM Plex Sans", sans-serif;
    font-family: "Manrope", sans-serif;
} */
body{
    padding: 0;
    margin: 0;
    font-family: "Manrope", sans-serif;
}
.messages {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem 0;
}

.messages li {
  padding: 12px 16px;
  border-radius: 6px;
  margin-bottom: 10px;
  font-weight: 500;
}

/* ✅ Success message (e.g. "Account created!") */
.messages li.success {
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

/* ❌ Error message (e.g. "Email already exists") */
.messages li.error {
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* ⚠️ Warning message */
.messages li.warning {
  background-color: #fff3cd;
  color: #856404;
  border: 1px solid #ffeeba;
}


.just-validate-error-label {
    color: red;               /* text color */
    font-size: 14px;          /* smaller font size */
    margin: 4px 0 0 0;        /* spacing above/below */
    padding: 0;               /* remove padding if any */
    display: block;           /* ensure it stays under the input */
    line-height: 1.2;         /* control height */
}
.input-error {
    border: 1px solid red !important;       /* red border */
    background-color: #fff0f0 !important;   /* optional light red background */
}

.accounts_section{
    width: 100%;
    display: flex;
    padding-top: 30px; /* slight top margin visually */
}
.accounts_img_div{
    /* Hide left image panel globally to center the form */
    display: none !important;
}
.accounts_card_main{
    width: 100%;
    padding: 40px 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.accouns_card_body_div{
    width: 100%;
    max-width: 520px;
    margin: auto;
    background-color: #FFFFFF;
    min-height: 300px;
}
.accounts_title{
    text-align: center;
}
.accounts_title img{
    margin: 40px 0px;
}
.accounts_title h1{
    font-weight: 600;
    font-size: 32px;
    text-align: center;
    margin-bottom: 0;
    color: #0A2540;
}
.accounts_title h1 span{
    color: #FF7F3E;
}
.accounts_title h1 span.signup_span{
    display: flex;
    justify-content: center;
    margin-top: 8px;
}
.accounts_title p{
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 15px;
    text-align: center;
    color: #0A2540;
    margin-top: 40px;
}
.accounts_title p a{
    color: #00A5FF;
}
.accounts_inputs_div{
    display: flex;
    flex-direction: column;
    margin-top: 40px;
    /* gap: 35px; */
}
.accounts_inputs_div input{
    background-color: #F5F5F5;
    border-radius: 4px;
    border: none;
    padding: 14px 16px;
    color: #ABABAB;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    outline: none;
}
.accounts_inputs_div input::placeholder{
    color: #ABABAB;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
}
.terms_div{
    display: flex;
    gap: 10px;
    margin-top: 30px;
    align-items: center;
}
.Forgot_div a{
    display: block;
    margin-top: 10px;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0A2540;
    cursor: pointer;
    text-decoration: none;
}
.terms_div label{
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0A2540;
    cursor: pointer;
}
.terms_div input{
    accent-color: #0A2540;
    height: 18px;
    width: 18px;
}
.terms_div label a{
    color: #00A5FF;
    text-decoration: none;
}
.accounts_btn button{
    background: #1E6CDF;
    padding: 12px 16px;
    margin-top: 30px;
    border-radius: 30px;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 18px;
    line-height: 20px;
    text-align: center;
    border: none;
    width: 100%;
}
.accounts_social_icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 30px;
}
.accounts_social_icons p{
    margin-bottom: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #0A2540;
}
.accounts_last{
    margin-bottom: 0;
    font-family: "IBM Plex Sans", sans-serif;
    font-weight: 400;
    font-size: 16px;
    color: #0A2540;
    margin-top: 30px;
}
.accounts_last a{
    text-decoration: none;
    color: #1E6CDF;
}
@media (max-width: 992px){
    .accounts_section {
        width: 100%;
        /* keep background off when centering form */
    }
    .accounts_img_div{
        display: none;
    }
    .accouns_card_body_div{
        max-width: 576px;
        padding: 50px 20px;
        border-radius: 6px;
    }
}
@media (max-width: 576px){
    .accounts_title h1 {
        font-weight: 600;
        font-size: 24px;
        text-align: center;
        margin-bottom: 0;
        color: #0A2540;
    }
    .accounts_card_main {
        width: 100%;
        padding: 30px 20px;
        display: flex;
    }
}

























































