@charset "UTF-8";

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&amp;display=swap");

:root {
    --white: #fff;
    --dark: #000;
    --black: #000;
    --light: #f8f8f8;
    --gray-100: #e7e7e7;
    --gray-200: #d1d1d1;
    --gray-300: #b0b0b0;
    --gray-400: #888888;
    --gray-500: #6d6d6d;
    --gray-600: #5d5d5d;
    --gray-700: #4f4f4f;
    --gray-800: #3d3d3d;
    --gray-900: #191919;
    --light-100: #fefefe;
    --light-200: #fcfcfd;
    --light-300: #fbfbfd;
    --light-400: #f9fafc;
    --light-500: #f8fafb;
    --light-600: #f7f9fb;
    --light-700: #f6f8fa;
    --light-800: #f5f7fa;
    --light-900: #f4f6f9;
}
body {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
    background-color: var(--white);
    overflow-y: auto;
    overflow-x: hidden;
}
@media (max-width: 767.98px) {
    body {
        font-size: 14px;
    }
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

* {
    outline: none;
}

button {
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
button:focus {
    box-shadow: none !important;
}

p {
    margin-bottom: 20px;
}
p:last-child {
    margin-bottom: 0;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    color: var(--gray-900);
    font-family: "Inter", sans-serif;
    font-weight: 700;
    margin-bottom: 0;
    line-height: 1.3;
}

a {
    color: var(--gray-900);
    cursor: pointer;
    text-decoration: none;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
a:hover {
    color: #ff4667;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
a:focus {
    outline: 0;
}

/* Utility Classes - Keep layout and text utilities used */
.w-100 {
    width: 100%;
}
.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}
.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}
.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
}
.d-grid {
    display: -ms-grid !important;
    display: grid !important;
}
.text-center {
    text-align: center !important;
}
.mb-2 {
    margin-bottom: 0.5rem !important;
}
.mb-3 {
    margin-bottom: 1rem !important;
}
.mb-4 {
    margin-bottom: 1.5rem !important;
}
.me-1 {
    margin-right: 0.25rem !important;
}
.me-2 {
    margin-right: 0.5rem !important;
}
.ms-1 {
    margin-left: 0.25rem !important;
}
.ms-2 {
    margin-left: 0.5rem !important;
}
.ms-auto {
    margin-left: auto !important;
}
.pb-3 {
    padding-bottom: 1rem !important;
}
.position-relative {
    position: relative;
}

/* Text utilities */
.fs-14 {
    font-size: 0.875rem !important;
}
.fs-32 {
    font-size: 2rem !important;
}
.fw-bold {
    font-weight: 700 !important;
}
.fw-normal {
    font-weight: 400 !important;
}
.text-danger {
    color: #e70d0d !important;
}
.text-secondary {
    color: #ff4667 !important;
}
.text-gray-7 {
    color: var(--gray-700) !important;
}
.link-1 {
    font-size: 14px;
    color: #ff4667;
    font-weight: 400;
    text-decoration: underline;
}
.link-1:hover {
    color: #392c7d;
}
.link-2 {
    color: #ff4667;
    font-weight: 400;
    font-size: 14px;
}
.link-2:hover {
    color: #392c7d;
}

/* Buttons */
.btn {
    border-radius: 1.5rem;
    padding: 0.4rem 0.85rem;
    font-size: 14px;
    transition: all 0.5s;
    font-weight: 500;
}
.btn:focus {
    box-shadow: none !important;
}
.btn.btn-lg {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
}
.btn.btn-secondary {
    background-color: #ff4667;
    border: 1px solid #ff4667;
    color: var(--white);
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus,
.btn.btn-secondary:active {
    background-color: #ff4667;
    border: 1px solid #ff4667;
    color: var(--white);
}
.btn.btn-light {
    background-color: var(--light);
    border: 1px solid var(--light);
    color: var(--gray-900);
}

/* Form Controls */
.form-control {
    border-color: var(--gray-100);
    color: var(--gray-900);
    background-color: var(--white);
    font-size: 14px;
    padding: 0.5rem 1rem;
    min-height: 40px;
}
.form-control:focus {
    box-shadow: none;
    border-color: var(--gray-100);
    background: var(--white);
}
.form-control-lg {
    font-size: 1rem;
    padding: 0.66rem 1rem;
}
.form-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 5px;
}
.form-check-input {
    width: 0.9rem;
    height: 0.9rem;
    background-color: var(--white);
    border: 1px solid var(--gray-100);
}
.form-check-input:checked {
    background-color: #ff4667;
    border-color: #ff4667;
}
.form-check-input:checked ~ .form-check-label {
    color: var(--gray-900);
}
.form-check-label {
    font-size: 14px;
    color: var(--gray-600);
}
.remember-me .form-check-label {
    font-size: 14px;
}

/* Input Icons and Password Toggle */
.input-icon {
    cursor: pointer;
    width: 30px;
    height: 30px;
    color: #191919;
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 10px;
}
.toggle-passwords {
    cursor: pointer;
    width: 30px;
    height: 30px;
    color: var(--gray-900);
    font-size: 18px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    justify-content: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    border-radius: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    position: absolute;
    top: 50%;
    right: 10px;
}
.toggle-passwords:hover {
    color: #392c7d;
}
.input-icon.text-gray-7 {
    color: var(--gray-700);
}

/* Login Page Specific Styles */
.login-content .login-bg {
    background: #feeef0;
    min-height: 100vh;
    position: fixed;
    display: flex;
    align-items: center;
    width: 50%;
}
.login-content .login-banner {
    max-width: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.login-content .login-banner img {
    max-width: 430px;
}
.login-content .login-carousel {
    width: 100%;
}
.login-content .login-carousel .login-carousel-section .login-banner {
    margin: auto;
    margin-bottom: 30px;
}
.login-content .login-carousel .login-carousel-section .mentor-course {
    width: 558px;
    text-align: center;
    margin: auto;
}
.login-content .login-carousel p {
    font-size: 14px;
}
.login-content .slick-dots button {
    width: 10px;
    height: 10px;
    border-radius: 50px;
    background: var(--gray-100);
}
.login-content .slick-dots .slick-active {
    width: 50px;
    height: 10px;
    border-radius: 50px;
    background: #ff4667;
}
.login-content .slick-dots .slick-active button {
    background: transparent;
}
.login-content .welcome-login {
    padding: 20px 20px 0px 20px;
}
.login-content .login-wrap-bg {
    position: absolute;
    right: 0;
    padding: 0;
}
.login-content .login-wrap-bg .login-wrapper {
    max-width: 100%;
    height: 100vh;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    justify-content: center;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
}
.login-content .login-wrap-bg .login-wrapper .loginbox {
    max-width: 100%;
    width: 100%;
    font-weight: 600;
    padding: 20px 100px;
}
@media (max-width: 1199.98px) {
    .login-content .login-wrap-bg .login-wrapper .loginbox {
        padding: 20px 70px;
    }
}
@media (max-width: 991.98px) {
    .login-content .login-wrap-bg .login-wrapper .loginbox {
        padding: 20px 60px;
    }
}
@media (max-width: 767.98px) {
    .login-content .login-wrap-bg .login-wrapper .loginbox {
        padding: 20px 30px;
    }
}
.login-content .login-wrap-bg .login-wrapper .loginbox .img-logo {
    margin-bottom: 54px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}
.login-content .login-wrap-bg .login-wrapper .loginbox .img-logo img {
    width: 150px;
}
.login-content .login-wrap-bg .login-header {
    margin-bottom: 80px;
}
@media (max-width: 767.98px) {
    .login-content .login-wrap-bg .login-header {
        margin-bottom: 50px;
    }
}
@media (max-width: 575.98px) {
    .login-content .login-wrap-bg .login-header {
        margin-bottom: 30px;
    }
}
.login-content .login-wrap-bg .topic {
    margin-bottom: 40px;
}
@media (max-width: 767.98px) {
    .login-content .login-wrap-bg .topic {
        margin-bottom: 30px;
    }
}
@media (max-width: 575.98px) {
    .login-content .login-wrap-bg .topic {
        margin-bottom: 20px;
    }
}
.login-content .login-wrap-bg .form-control:focus {
    border-color: #ff4667;
}
.login-content .login-wrap-bg .form-check-input {
    width: 20px;
    height: 20px;
    margin-top: 0;
    margin-right: 8px;
}
.login-content .login-wrap-bg .form-check-label {
    font-weight: 400;
}
.login-content .login-wrap-bg .or {
    position: relative;
}
.login-content .login-wrap-bg .or::after {
    position: absolute;
    content: "";
    width: 180px;
    height: 1px;
    background: var(--gray-100);
    left: 0;
}
.login-content .login-wrap-bg .or::before {
    position: absolute;
    content: "";
    width: 180px;
    height: 1px;
    background: var(--gray-100);
    right: 0;
}
.login-content .google-bg span a {
    color: #22100d;
    font-weight: 400;
}
.login-content .sign-google {
    margin: 32px 0px;
}
.login-content .pass-group {
    position: relative;
}
.login-content .forgot-link {
    color: #392c7d;
    font-size: 14px;
}

/* Slick Carousel Styles */
.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}
.slick-initialized .slick-slide {
    display: block;
}
.slick-slide img {
    display: block;
}
.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}
.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-dots {
    position: absolute;
    bottom: -45px;
    display: block;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    text-align: center;
}
.slick-dots li {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}
.slick-dots li button {
    font-size: 0;
    line-height: 0;
    display: block;
    width: 20px;
    height: 20px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
    opacity: 1;
}
.slick-dots li button:before {
    display: none;
}
/* Toaster */
/* ===============================
   Custom Toastr Styling
================================ */

#toast-container > div {
    border-radius: 8px;
    padding: 15px 20px 15px 50px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 1;
}

/* Success */
.toast-success {
    background-color: #28a745 !important;
    color: #ffffff;
}

/* Error */
.toast-error {
    background-color: #dc3545 !important;
    color: #ffffff;
}

/* Info */
.toast-info {
    background-color: #17a2b8 !important;
    color: #ffffff;
}

/* Warning */
.toast-warning {
    background-color: #ffc107 !important;
    color: #212529;
}

/* Close Button */
.toast-close-button {
    color: #ffffff !important;
    opacity: 0.9;
    font-size: 18px;
}

.toast-close-button:hover {
    opacity: 1;
}

/* Progress Bar */
.toast-progress {
    height: 4px;
    background-color: rgba(255, 255, 255, 0.7);
}
