:root {
    --primary-color: #59b335;
    --primary-gradient: linear-gradient(
        143.44deg,
        #81cc2a 1.59%,
        #59b335 69.22%
    );
    --red-gradient: linear-gradient(90deg, #f20000 0%, #ff5656 100%);
    --black-font-color: #000000;
    --common-border-color: #2d3a4d26;
}
.bg-primary {
    background: var(--primary-gradient) !important;
}
.t-primary {
    color: var(--primary-color);
}
.btn-primary {
    background: var(--primary-gradient) !important;
    border: none !important;
}
.btn-primary:hover {
    background: var(--primary-gradient) !important;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
}
body {
    background: #f6f6f6;
    overflow-x: hidden;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Poppins;
}

button {
    cursor: pointer;
}

.customer-login-wrapper {
    background-color: #f7f7f7;
    width: 100%;
    height: 100vh;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 6px 31px -2px rgba(0, 0, 0, 0.3);
}

.customer-login-form-inner {
    position: relative;
    text-align: center;
    z-index: 1;
}

.customer-login-btn-outer {
    padding: 20px 0 0;
    text-align: center;
    width: 100%;
}

.customer-login-btn-inner {
    width: 100%;
    padding: 16px;
    border-radius: 12px;
    border: none;
    background: #257aa6;
    outline: none;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.customer-login-logo-outer {
    /* margin-bottom: 30px; */
    min-height: 275px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    border-radius: 0px 0px 20px 20px;
}

.customer-login-logo-outer a {
    width: 50%;
    display: inline-block;
}

.customer-login-logo-inner {
    width: 100%;
}

.customer-login-items-outer input {
    width: 100%;
    height: 48px;
    padding: 13px 15px;
    border-radius: 12px;
    border: none;
    background: #ffffff;
    outline: none;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #292d3226;
}

.customer-login-items-outer input::placeholder {
    color: #818994;
    font-size: 12px;
}

.customer-login-form-inner:after {
    content: "";
}

.customer-login-form {
    width: 100%;
}

input[type="checkbox"],
input[type="radio"] {
    height: 20px;
    width: 20px;
    margin: 0;
    position: unset;
    position: relative;
}

.customer-login-items-outer .form-check {
    user-select: none;
    display: flex;
    align-items: center;
}

.w-100 {
    width: 100%;
}
.d-flex {
    display: flex;
    /* flex-wrap: wrap; */
}
.justify-content-end {
    justify-content: end;
}

.cursor-pointer {
    cursor: pointer;
}

::placeholder {
    font-size: 15px !important;
}
.form-items-wrapper {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: scale(0);
    transition: all 0.5s ease;
}

.form-items-wrapper.show-form {
    transform: scale(1);
}

.form-heading {
    font-size: 32px;
    font-weight: 600;
    line-height: 46.5px;
    text-align: left;
    width: 100%;
    margin-bottom: 20px;
}
.input-group {
    width: 100%;
    margin-bottom: 20px;
}

.customer-login-items-outer {
    width: 100%;
}
.customer-login-items-outer.d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.customer-login-items-outer .form-check label {
    padding-left: 7px;
}

.input-group label {
    margin-bottom: 8px;
    display: block;
    width: 100%;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.input-group:last-child {
    margin-bottom: 5px;
}

.form-check input[type="checkbox"] {
    appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    padding: 0;
}

.form-check input[type="checkbox"]:checked {
    background: var(--primary-gradient);
    border: none;
}

.form-check input[type="checkbox"]:checked::after {
    content: "";
    width: 10px;
    height: 5px;
    border-left: 3px solid white;
    border-bottom: 3px solid white;
    position: absolute;
    top: 4px;
    left: 4px;
    transform: rotate(-45deg);
}

.all-message-wrapper {
}

/* Base Styles */
.alert {
    position: relative;
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.close {
    position: absolute;
    top: 0.25rem;
    right: 0.75rem;
    padding: 0.5rem;
    background: none;
    border: none;
    color: inherit;
    font-size: 1.25rem;
    opacity: 0.5;
    cursor: pointer;
}

.close:hover {
    opacity: 0.75;
}

/* Alert Colors */
.alert-primary {
    background-color: #cce5ff;
    border-color: #b8daff;
    color: #004085;
}

.alert-secondary {
    background-color: #e2e3e5;
    border-color: #d6d8db;
    color: #383d41;
}

.alert-success {
    background-color: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
}

.alert-danger {
    background-color: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
}

.alert-warning {
    background-color: #fff3cd;
    border-color: #ffeeba;
    color: #856404;
}

.alert-info {
    background-color: #d1ecf1;
    border-color: #bee5eb;
    color: #0c5460;
}

.alert-light {
    background-color: #fefefe;
    border-color: #fdfdfe;
    color: #818182;
}

.alert-dark {
    background-color: #d6d8d9;
    border-color: #c6c8ca;
    color: #1b1e21;
}

/* Dismissing Alerts */
.alert-dismissible {
    padding-right: 3rem;
}

.alert-dismissible .close {
    z-index: 2;
}
button:disabled {
    cursor: initial;
    opacity: 0.5;
}
#timeRemaining {
    color: red;
    font-size: 16px;
}

@media screen and (min-width: 576px) {
    .customer-login-wrapper {
        max-width: 375px;
    }
}
