@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-color: #f7a879;
    --secondary-color: #c0b879;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

.gird-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.padding-left-1rem {
    padding-left: 1rem;
}

/* header css start */
.header-section {
    background-color: #fff;
    padding-top: 2px;
    padding-bottom: 2px;
    position: sticky;
    top: 0;
    z-index: 9999;
}
.logo-image {
    width: 90px;
    object-fit: cover;
    object-position: center;
}
/* header css end */

/* hero section start */
.hero-section {
    background: url('../assets/image/hero-bg.png') center/cover no-repeat;
    height: 100vh;
    color: #fff;
}

.hero-content {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hero-title {
    font-size: 3rem;
}
.hero-text {
    color: #eeeeee;
    font-size: 20px;
}
.hero-user-group {
    margin-top: 2rem;
}
.user-group img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-right: -10px;
}
.text-count {
    font-size: 20px;
}
.login-card {
    background: #2a2a29b2;
    border-radius: 6px;
    padding: 20px;
    max-width: 400px;
    border: 1px solid #b8b8b8;
    width: 100%;
}
.btn-custom {
    color: #fff;
    font-weight: 600;
    width: 100%;
    padding: 10px;
    border-radius: 50px;
    transition: 0.3s;
    font-size: 16px;
}
.btn-color {
    background-color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

.btn-color:hover {
    background-color: #ff884d;
}
.lable-text {
    font-size: 14px;
}
.lable-color {
    color: #e6e6e6;
}
.input-field {
    border-radius: 6px !important;
    border: 1px solid #e6e6e6 !important;
    padding: 10px !important;
    color: #eeeeee !important;
    font-size: 14px !important;
}
.input-field::placeholder {
    color: #e6e6e6 !important;
    font-size: 14px !important;
}
.input-field:focus {
    box-shadow: none !important;
    border: 1px solid var(--primary-color) !important;
}
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.radio-option {
    display: flex;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.radio-option input[type='radio'] {
    display: none;
}

/* Unselected state - just outline */
.radio-circle-outer {
    width: 25px;
    height: 25px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

/* Inner filled circle - hidden by default */
.radio-circle-inner {
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: none;
    transition: all 0.3s ease;
}

/* When checked - show outer border + inner circle */
.radio-option
    input[type='radio']:checked
    + .radio-circle-wrapper
    .radio-circle-outer {
    border-color: var(--primary-color);
    background-color: transparent;
}

.radio-option
    input[type='radio']:checked
    + .radio-circle-wrapper
    .radio-circle-inner {
    display: block;
}

.radio-label {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    cursor: pointer;
}

.radio-option:hover {
    opacity: 0.9;
}
.alert-text {
    font-size: 12px;
    font-weight: normal;
    color: #e6e6e6;
    line-height: 20px;
}
/* hero section end */

/* my portal css start */
.my-portal-section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.my-portal-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: 1px solid var(--primary-color);
    border-radius: 20px;
}
.my-portal-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}
.my-portal-left {
    width: 40%;
}
.my-portal-color-title {
    font-size: 3rem;
    color: var(--primary-color);
}
.my-portal-text {
    color: #777776;
    font-size: 22px;
    font-weight: 500;
}
.my-portal-card {
    background-color: #c0b8790d;
    border: 1px solid #f7a8791a;
    border-radius: 6px;
    padding: 15px;
    box-shadow: 0 0 18px 0 #0000000d;
    margin: 0 1rem;
}

.my-portal-right {
    width: 60%;
}
.my-portal-grid {
    margin-top: 2.5rem;
}
.my-portal-icon {
    height: 65px;
    width: 65px;
    background-color: #877d1f1a;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
.my-portal-card-title {
    font-size: 20px;
    color: #50504f;
    margin-bottom: 6px;
    margin-top: 20px;
}
.my-portal-card-text {
    color: #777776;
    font-size: 15px;
}
.slider-btn-container {
    margin-top: 2rem;
}
.button-slider {
    border: 1px solid #f7a879;
    border-radius: 3px;
    padding: 6px;
    font-size: 16px;
    color: #f7a879;
}
.my-portal-line {
    width: 15px;
    height: 15px;
    background-color: #c0b879;
    border-radius: 50%;
}
.my-portal-line-active {
    width: 50px;
    border-radius: 50px;
}

/* my portal css end */

/* otp css start */
.otp-text {
    font-size: 15px;
    color: #e6e6e6;
}
.otp-input {
    width: 45px;
    height: 50px;
    border: 2px solid #e6e6e6;
    border-radius: 8px;
    text-align: center;
    font-size: 20px;
    margin: 0 4px;
    background: transparent;
    color: #fff;
}
.otp-input::-webkit-inner-spin-button,
.otp-input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input {
    -moz-appearance: textfield; /* For Firefox */
}

.otp-input:focus {
    border-color: var(--primary-color);
    outline: none;
}
.resend {
    color: #c0b879;
    text-decoration: none;
    font-weight: 600;
    cursor: pointer;
}
.text-number {
    color: #e6e6e6;
    font-size: 14px;
}
/* otp css end */

/* footer css start */
.footer-section {
    background: #50504f;
    padding-top: 3rem;
}
.footer-logo {
    max-width: 100px;
}
.social-icon {
    color: #ffffff;
    font-size: 20px;
}
.social-icon:hover {
    color: var(--primary-color);
}
.footer-title {
    color: #f8f8f8;
    font-size: 18px;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}
.footer-text {
    margin-bottom: 1.5rem;
    color: #f8f8f8;
    font-size: 15px;
    line-height: 26px;
}
.footer-contact {
    color: #f8f8f8;
    font-size: 20px;
    margin-bottom: 1.5rem;
}
.footer-email {
    font-size: 14px;
    color: #f8f8f8;
    text-decoration: none;
}
.footer-copyright span {
    font-size: 13px;
    display: inline-block;
    margin: 0;
}

.footer-copyright {
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: relative;
}

.footer-copyright::before,
.footer-copyright::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 35%;
    height: 2px;
    background-color: #888887;
}

.footer-copyright::before {
    left: 0;
}

.footer-copyright::after {
    right: 0;
}

/* footer css end */

@media only screen and (min-width: 250px) and (max-width: 575px) {
    .my-portal-icon {
        margin: auto;
    }
    .hero-title,
    .my-portal-color-title {
        font-size: 1.8rem;
        text-align: center;
    }
    .hero-text {
        font-size: 15px;
        text-align: center;
    }
    .hero-section {
        padding: 3rem 0;
        height: auto;
    }
    .my-portal-content {
        display: flex;
        flex-direction: column;
    }
    .my-portal-left,
    .my-portal-right {
        width: 100%;
    }
    .my-portal-section {
        padding: 3rem 0;
    }
    .my-portal-title,
    .my-portal-text {
        text-align: center;
    }
    .dot-container {
        display: none !important;
    }
    .slider-btn-container {
        justify-content: flex-end !important;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
    .login-card {
        max-width: 100%;
    }
    .padding-left-1rem {
        padding-left: 0rem;
    }
    .my-portal-card-title,
    .my-portal-card-text {
        text-align: center;
    }
    .my-portal-card-text {
        margin: auto;
    }
}
@media only screen and (min-width: 576px) and (max-width: 767px) {
    .my-portal-icon {
        margin: auto;
    }
    .my-portal-card-title,
    .my-portal-card-text {
        text-align: center;
    }
    .my-portal-card-text {
        margin: auto;
    }
    .hero-title,
    .my-portal-color-title {
        font-size: 1.8rem;
        text-align: center;
    }
    .hero-text {
        font-size: 15px;
        text-align: center;
    }
    .hero-section {
        padding: 3rem 0;
        height: auto;
    }
    .my-portal-content {
        display: flex;
        flex-direction: column;
    }
    .my-portal-left,
    .my-portal-right {
        width: 100%;
    }
    .my-portal-section {
        padding: 3rem 0;
    }
    .my-portal-title,
    .my-portal-text {
        text-align: center;
    }
    .dot-container {
        display: none !important;
    }
    .slider-btn-container {
        justify-content: flex-end !important;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
    .login-card {
        max-width: 100%;
    }
    .padding-left-1rem {
        padding-left: 0rem;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .my-portal-icon {
        margin: auto;
    }
    .my-portal-card-title,
    .my-portal-card-text {
        text-align: center;
    }
    .my-portal-card-text {
        margin: auto;
    }
    .hero-title,
    .my-portal-color-title {
        font-size: 2rem;
        text-align: center;
    }
    .hero-text {
        font-size: 15px;
        text-align: center;
    }
    .hero-section {
        padding: 3rem 0;
        height: auto;
    }
    .my-portal-content {
        display: flex;
        flex-direction: column;
    }
    .my-portal-left,
    .my-portal-right {
        width: 100%;
    }
    .my-portal-section {
        padding: 4rem 0;
    }
    .my-portal-title,
    .my-portal-text {
        text-align: center;
    }
    .dot-container {
        display: none !important;
    }
    .slider-btn-container {
        justify-content: flex-end !important;
    }
    .hero-content {
        display: flex;
        flex-direction: column;
        gap: 2rem;
        justify-content: center;
        align-items: center;
    }
    .login-card {
        max-width: 100%;
    }
    .padding-left-1rem {
        padding-left: 0rem;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
}
