* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: "Lato", sans-serif;
}

:root {
    --primary-color: #0096a3;
    --secondary-color: #ee5a23;
    --text-color: #010101;
    --textgrey-color: #797a7b;
    --lightgrey-color: #8f98ae;
    --border-color: #e3e3e3;
    --border-bgcolor: #e8f0fe;
    --tab-bgcolor: #a3dce9;
    --bs-blue: #0d6efd;
    --bg-white: #ffffff;
    --text-black: #000000;
    --text-white: #ffffff;
    --primaryborder-color: #0096a3;
    --clientform-height: 50px;
}
.login-container {
    display: flex;
    align-items: center;
    height: 100vh;
    width: 100vw;
}
.login {
    width: 100%;
    overflow: hidden;
}
.login h3 {
    font-size: 18px;
    color: var(--lightgrey-color);
    font-weight: 600;
}
.login .smalltext {
    color: var(--primary-color);
}
.login :is(.form-input, .form-control, .form-select) {
    padding: 8px 50px;
    background: var(--border-bgcolor);
    border-radius: 8px;
    display: flex;
    color: var(--textgrey-color);
    border: 1px solid var(--border-color);
    font-weight: bold;
    align-items: center;
}
.login .form-control {
    padding-inline: 16px;
}
:is(.login, .clientform-container) label {
    color: var(--text-color);
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
}
.login .form-input input {
    border: none;
    background-color: transparent;
    width: 100%;
    outline: none;
}
.forgot-password {
    color: var(--bs-blue);
}
.login-rightsection {
    background-image: url(/images/bg-right-side.png);
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    position: fixed;
    right: 0px;
    top: 0px;
    z-index: -1;
    height: 100%;
}
.login-container .nav-tabs {
    display: none;
}
.login-container .tab-pane {
    padding-inline: 30px;
    display: block;
    opacity: 1;
    align-content: center;
}
.login-form {
    width: 100%;
    max-width: 500px;
    z-index: 2;
}
.login-form button.primarybtn {
    font-size: 20px;
    padding: 12px;
    max-width: 200px;
    background: linear-gradient(90deg, #006471 0%, #008e9b 100%);
    box-shadow: 0px 0px 32px 0px rgba(0, 0, 0, 0.25);
    border: none;
}
.rightsection-heading h2 {
    color: var(--text-white);
}
.rightsection-heading p {
    color: var(--text-white);
    letter-spacing: 0.45px;
}
.stepper-container {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}
.steps {
    display: flex;
    width: 90%;
    align-items: center;
    justify-content: space-between;
    position: relative;
    margin: 0px auto;
    margin-bottom: 12px;
}
.steps .circle {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    width: 40px;
    color: var(--lightgrey-color);
    font-size: 16px;
    font-weight: 500;
    border-radius: 50%;
    background: var(--bg-white);
    border: 4px solid var(--border-color);
    transition: all 200ms ease;
    transition-delay: 0s;
    z-index: 2;
}
.steps .circle.active {
    transition-delay: 100ms;
    border-color: var(--primaryborder-color);
    color: var(--primary-color);
}
.steps .circle.completed::before {
    content: "";
    background-image: url(/images/Animation\ -\ 1734531536762.gif);
    width: 100px;
    height: 100px;
    position: absolute;
}
.steps .progress-bar {
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--bg-white);
    z-index: 1;
}
.progress-bar .indicator {
    position: absolute;
    height: 100%;
    width: 0%;
    background: var(--primaryborder-color);
    transition: all 500ms ease-in-out;
}
.buttons {
    display: flex;
    gap: 20px;
    padding-block: 12px;
}
.buttons :is(.tabbtn, .submitbtn) {
    padding: 8px 25px;
    background: var(--secondary-color);
    border: none;
    border-radius: 8px;
    color: var(--text-white);
    font-size: 16px;
    font-weight: 400;
    cursor: pointer;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.05);
    transition: all 200ms linear;
    width: 100%;
    max-width: 130px;
}
.buttons button:active {
    transform: scale(0.97);
}
.buttons .prebtn {
    background-color: var(--bg-white);
    color: var(--text-color);
}
.buttons button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}
.submitbtn {
    display: none;
}
.stepper-container
    :is(h4, label, .helpertext-container span, .step-helptext p) {
    color: var(--text-white);
}
.stepper-container h4 {
    text-align: left;
}
.step-helptext {
    top: 50%;
    transform: translateY(6px);
}
.clientform {
    display: none;
    height: calc(100vh - 400px);
    overflow: auto;
    overflow-x: hidden;
}
.clientform.active {
    display: block;
}
.clientform-container label {
    color: var(--text-white);
}
.login .clientform-container select {
    appearance: auto;
    padding-inline: 16px;
}
.login .clientform-container {
    overflow: auto;
    overflow-x: hidden;
}
.login .clientform-container :is(.form-control, select) {
    color: var(--text-black);
    font-weight: 500;
    background-color: var(--bg-white);
}
.loginform #password-error {
    color: #d32f2f;
}
.partner-user-login #login_email-error,
.partner-user-login #login_password-error {
    color: #d32f2f;
}
span {
    color: red;
}

.loginforminput-container {
    anchor-name: --my-anchor;
}
#login_email-error, #login_email_err,
#login_password_err, #login_password-error {
    position: absolute;
    position-anchor: --my-anchor;
    bottom: -25px;
    left: 8px;
    font-weight: 500;
    /* font-size: 13px; */
}
.login-page-logo img {
    max-width: 200px;
}
