@CHARSET "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.login-wrapper {
    display: flex;
    height: 100vh;
}

/* LEFT SIDE */
.left-side {
    flex: 1;
    /* background: linear-gradient(140deg, #001e3c, #003f8c, #8e227a); */
    /* background: linear-gradient(140deg, #0f2027, #203a43, #2c5364); */ /* cool and modern  */
    /* background: linear-gradient(140deg, #ff416c, #ff4b2b); */ /* warm and vibrant  */
    background:  linear-gradient(140deg, #6a11cb, #2575fc);/* bold and playful  */
    /* background:  linear-gradient(140deg, #0f2027, #203a43, #2c5364); */ /* Elegant & Minimal  */
    background-size: cover;
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 4rem;
}

.brand-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* left align everything */
}

.logo-and-title {
    display: flex;
    align-items: center; /* vertically align logo and title */
    margin-bottom: 0.5rem; /* space between title line and tagline */
}

.logo-left {
    width: 150px; /* adjust as needed */
    margin-right: 0.75rem;
    /* background-color: #fff;
    border-radius: 5px; */
    padding: 5px;
}

.brand-left h1 {
    font-size: 1.6rem;
    margin: 9px 0px 0px;
    font-weight: 200;
}

.brand-tagline {
    font-size: 1.2rem;
    margin: 0px 0px 0px 10px;
    color: #f0f0f0;
    font-weight: 200;
}

.brand .logo {
    width: 85px;
    margin-bottom: 10px;
}

/* RIGHT SIDE */
.right-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers form-box vertically */
    padding: 2rem;
    position: relative; /* needed for footer */
    min-height: 100vh;
    background-color: #ffffff;
    max-width: 508px; /* Maximum width */
    margin: 0 auto;    /* Center horizontally */
}

.top-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Left block containing logo & H1 stacked */
.left-block {
    display: flex;
    flex-direction: column;
    align-items: center; /* Center below the logo */
}

.top-logo {
    width: 85px;
    height: auto;
}

.brand-title {
    margin-top: 6px;
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 700;
}

/* BUSINESS stays vertically centered on the right */
.brand-short-title {
    margin: 0;
    font-size: 18px;
    font-weight: 500;
    color: #0d6efd;
    text-transform: uppercase;
}


/* .top-brand {
    display: flex;
    align-items: center;
}

.top-logo {
    width: 85px;
    margin-right: 1rem;
}

.brand-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.brand-text h1 {
    font-size: 1.5rem;
    margin: 0; 

}

.brand-text p {
    font-size: 1rem;
    margin: 0; 
    color: #0d6efd;
} */

.form-box {
    margin: auto 0; /* vertical centering inside right-side */
    width: 100%;
    max-width: 400px;
}

.small-logo {
    width: 150px;
    margin-bottom: 25px;
    align-items: center;
    text-align: center;
    border-radius: 25px;
}

.small-logo-center {
    display: block;
    margin: 0 auto 1rem; /* center horizontally and add bottom spacing */
    width: 150px; /* adjust size as needed */
    border-radius: 25px;
    border: 1px solid #0d6efd;
}

.signin-title {
    font-size: 22px;
    font-weight: 600;
}

.signin-title-center {
    font-size: 22px;
    font-weight: 600;
    margin: 0 auto 1rem;
    text-align: center;
}

.signup-text {
    margin: 8px 0 20px;
    font-size: 14px;
}

.signup-text .link {
    color: #0064d8;
    text-decoration: none;
    font-weight: 500;
}

.btn-primary {
    width: 100%;
    padding: 12px;
    background: #0064d8;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
}

.btn-primary i
{
    font-size: 25px;
    margin-top: -5px;
}
.btn-primary:hover {
    background: #004faf;
}
.error-message {
    background: #ffdddd;
    padding: 10px;
    border-left: 4px solid #cc0000;
    color: #a20000;
    margin-bottom: 15px;
    /* display: none; */
    font-size: 13px;
}

/* FOOTER LINKS */
.footer-links {
    position: absolute;
    bottom: 1rem;
    left: 2rem;
    font-size: 0.8rem;
    color: #777;
    font-weight: 700;
}

.footer-links a {
    margin-right: 0.5rem;
    color: #555;
    text-decoration: none;
}

.footer-links a:hover {
    text-decoration: none;
    background-color: #000000;
    color: #fff;
    border-radius: 2px;
}

.ary-flex
{
    align-items: stretch;
    display: flex;
    flex: 0 1 auto;
    flex-flow: column;
    gap: 36px;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.ary-box-inputf .ary-box-input > input , .ary-box-inputf .ary-box-input > textarea, .ary-box-inputf .ary-box-input > a 
{
    flex-grow: 1;
    width: 100%;
    padding: 0;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    background-color: transparent;
    border: 0;
    box-shadow: none;
}


.ary-box-inputf.ary-box-input-label-size-lg
{
    font-size: 16px;
    font-weight: 700;
}
.ary-box-inputf > span {
    display: flex;
    gap: 4px;
    align-items: center;
    color: #23282e;
    margin-bottom: 5px;
}
.ary-box-inputf .ary-box-input-wrapper
{
    display: flex;
    flex-direction: row;
    gap: 8px;
    align-items: center;
}
.ary-box-inputf .ary-box-input.ary-box-input-size-lg
{
    
    width: 100%;
    min-width: 60px;
    max-width: 600px;
}

.ary-box-inputf .ary-box-input {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    flex-grow: 1;
    gap: 6px;
    align-items: center;
    box-sizing: border-box;
    min-width: 60px;
    max-width: 600px;
    padding: 7px 14px;
    color: #23282e;
    background-color: #f7f7f7;
    border: 2px solid #d0d4d9;
    border-radius: 6px
  }

.ary-box-inputf .ary-box-input > input:focus, .ary-box-inputf .ary-box-input > textarea:focus
{
    outline: none;
}
.ary-box-inputf .ary-box-input[\:has\(input\:focus-visible\)],
    .ary-box-inputf .ary-box-input[\:has\(input\:focus\)], .ary-box-inputf .ary-box-input[\:has\(textarea\:focus-visible\)],
    .ary-box-inputf .ary-box-input[\:has\(textarea\:focus\)] {
      border-color: #000000;
      box-shadow: 0px 0px 0px 2px #cccccc, 0px 0px 0px 4px #000000;
    }

.ary-box-inputf .ary-box-input:has(input:focus-visible),
    .ary-box-inputf .ary-box-input:has(input:focus), .ary-box-inputf .ary-box-input:has(textarea:focus-visible),
    .ary-box-inputf .ary-box-input:has(textarea:focus) {
      border-color:  #000000;
      box-shadow: 0px 0px 0px 2px #cccccc, 0px 0px 0px 4px #000000;
    }

/* RESPONSIVE */
@media(max-width: 900px) {
    .login-wrapper {
        flex-direction: column;
        height: auto;
        background: linear-gradient(140deg, #ffffff, #ffffff);
        padding: 0;
    }

    .left-side {
        display: none;
    }

    .right-side {
        width: 100%;
        background: transparent;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 1rem;
    }

    .form-box {
        width: 100%;
        max-width: 340px;
        margin: auto;
        padding-top:0;
    }
    .footer-links span
    {
        display: inline-block;
    }
}

.grecaptcha-badge
{
    bottom:50px !important;
}