.custom-shape {
    width: 300px;
    height: 200px;
    background: #4CAF50;

    clip-path: polygon(0 0,
            75% 0,
            82% 12%,
            100% 12%,
            100% 100%,
            0 100%);
}

.form-control:focus {
    color: #213117;
    background-color: #FFFFFF !important;
    border: 1px solid #C4C4C4;
    box-shadow: none !important;
}

.form-control {
    color: #213117;
    font-size: 15px;    
    background-color: #FFFFFF !important;
    border: 1px solid #C4C4C4;
    box-shadow: none;
}

/* Modern browsers */
.form-control::placeholder {
    color: #C4C4C4;
    opacity: 1;
    /* ensures full color is visible */
    font-size: 15px !important;
    font-weight: 200;
}

/* Chrome, Safari, Edge (webkit/blink) */
.form-control::-webkit-input-placeholder {
    color: #C4C4C4;
    font-size: 15px !important;
    font-weight: 200;
}

/* Firefox */
.form-control:-moz-placeholder {
    color: #C4C4C4;
    opacity: 1;
    font-size: 15px !important;
    font-weight: 200;
}

.form-control::-moz-placeholder {
    color: #C4C4C4;
    opacity: 1;
    font-size: 15px !important;
    font-weight: 200;
}

/* Internet Explorer 10-11 */
.form-control:-ms-input-placeholder {
    color: #C4C4C4;
    font-size: 15px !important;
    font-weight: 200;
}

.form-control::-ms-input-placeholder {
    color: #C4C4C4;
    font-size: 15px !important;
    font-weight: 200;
}

#password {
    color: #213117;
    /* lighter grey stars */
    font-size: 18px;
    /* optional: bigger stars */
}

.form-check-input[type=checkbox] {
    border-radius: 50%;
}

/* greyed muted state */
.btn-muted {
    background-color: #C4C4C4 !important;
    color: white !important;
    cursor: not-allowed;
}

/* enabled green state */
.btn-active {
    background-color: #276049 !important;
    color: white !important;
}

.form-check-input:focus {
    outline: none !important;
    box-shadow: none !important;
    /* removes blue outline/shadow */
}

.form-check-input {
    border: 2px solid #C4C4C4;
    /* custom border color */
}

/* Checked box */
.form-check-input:checked {
    background-color: #276049 !important;
    /* green background when checked */
    border-color: #276049 !important;
    /* matching border */
}

.form-check-input:focus-visible {
    outline: 2px solid #276049 !important;
    /* custom green focus outline */
    box-shadow: 0 0 0 0px transparent;
}

/* Remove blue focus border/shadow specifically from the checkbox */
input[type="checkbox"].form-check-input,
input[type="checkbox"].form-check-input:focus,
input[type="checkbox"].form-check-input:focus-visible,
input[type="checkbox"].form-check-input:active {
    outline: none !important;
    box-shadow: none !important;
    border-color: #C4C4C4 !important;
    /* ensure border stays consistent */
}

/* Override Chrome/Edge autofill background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-box-shadow: 0 0 0px 1000px #FFFFFF inset !important;
    box-shadow: 0 0 0px 1000px #FFFFFF inset !important;
    -webkit-text-fill-color: #213117 !important;
    /* keep text color */
}


.login-wrapper {
    height: 100vh;
    padding: 20px;
    background: #062d1d;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Card */
.login-card {
    
    width: 100%;
    border-radius: 10px;
    background:#062d1d;
}

/* 🔥 TOP SECTION */
.login-content {
    position: relative;
    color: #fff;

    /* background:#3c8965e0; */
    background: #1E4535;

    /* Border like image */
    border: 1px solid rgba(255, 255, 255, 0.3);

    /* Rounded */
    border-radius: 15px;

    /* 🔥 SHAPE CUT */
    /* clip-path: polygon(
    0 0,
    75% 0,
    82% 12%,
    100% 12%,
    100% 100%,
    0 100%
  ); */
}

/* Logo right */
.logo {
    display: flex;
    justify-content: flex-end;
    margin-top: 10px;
    margin-right: 5px;
}

.logo img {
    width: 80px;
    height: auto;
}

/* Content */
.content-inner {
    margin-top: 20px;
    /* max-width: 100%; */

}

.login-content h2 {
    font-size: 26px;
    font-weight: 600;
}

.login-content p {
    font-size: 16px;
    margin-top: 15px;
    color: #cfe3d9;
}

/* Dots */

/* Custom Owl Dots */
#customDots {
        margin-top: 15px;
        margin-bottom: 10px;
        padding-left: 25px;
        display: flex;
        justify-content: end;
        /* align-items: center; */
        margin-bottom: 0;
    }

    #customDots .owl-dots {
        background: transparent !important;
        border: none !important;
        outline: none !important;
    }

#customDots .owl-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    /* light faded */
    border-radius: 50%;
    display: inline-block;
    margin-right: 6px;
    transition: all 0.3s ease;
}

#customDots .owl-dots.active span {
    width: 22px;
    height: 8px;
    background: #ffffff;
    border-radius: 10px;
}





/* .dots {
    margin-top: 25px;
  } */

/* .dots span {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #a9c3b7;
    border-radius: 50%;
    margin-right: 6px;
  } */

/* .dots .active {
    width: 22px;
    border-radius: 10px;
    background: #fff;
  } */

/* 🔥 BOTTOM IMAGE */
.login-illustration {
    height: 64%;

}

.login-illustration img {
    width: 100%;
    height: stretch;
    border-radius: 0px 0px 10px 10px;
}

html, body {
    height: 100%;
    margin: 0;
    overflow: hidden;
}

.container-fluid {
    height: 80vh;
    overflow: hidden;
}

.row {
    height: 80%;
}

.badge-expired {
    z-index: 40;
    /* border-left: 1px solid rgba(255, 255, 255, 0.3); */
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    background-color: #062d1d;
    clip-path: polygon(0 0, 100% 0%, 100% 100%, 15% 99%);
    filter: drop-shadow(0 0 10px #062d1d);
    transition: transform 0.3s ease;
    will-change: transform;
    margin-bottom: 10px;
}


@media (max-width: 992px) {
    #customDots {
        right: 20px;
        top: 100px;
    }
}

@media (max-width: 768px) {
    #customDots {
        right: 15px;
        top: 90px;
    }
}

@media (max-width: 576px) {
    #customDots {
        right: 50%;
        transform: translateX(50%);
        /* center align */
        top: 85px;
    }
}

@media (max-width: 425px) {
    .main-content-card {
        padding: 20px !important;
        border-radius: 15px !important;
    }
}




@media (max-width:425px) {
    .email-container {
        width: 100% !important;
    }
}

@media (max-width:768px) {
    .email-container {
        width: 100% !important;
    }

    .main-content-card {
        width: 100% !important;
    }
}

@media (max-width:1024px) {
    .email-container {
        width: 100% !important;
    }
}

/* DOTS CONTAINER */
.owl-dots {
    position: absolute;
    bottom: 10px;   /* move to bottom */
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    text-align: end;
    right: 10px;
}

/* EACH DOT */
.owl-dot span {
    width: 10px;
    height: 10px;
    background: #cfcfcf;
    display: block;
    border-radius: 50%;
    margin: 5px;
    transition: 0.3s;
}

/* ACTIVE DOT */
.owl-dot.active span {
    background: #ffffff;
    width: 25px;
    border-radius: 10px;
    margin-right: 15px;
}