.mian { margin-top: 0px; } .btn-aifo-primary { width: 100%; height: 55px; background: var(--aifo-orange); color: var(--aifo-white); border: none; border-radius: 14px; font-size: 20px; font-weight: 600; transition: all 0.3s ease; cursor: pointer; } .btn-aifo-primary:hover { background: var(--aifo-orange-hover); box-shadow: 0 8px 24px rgba(249, 135, 21, 0.35); transform: translateY(-2px); } .login-page { position: relative; z-index: 1; min-height: 100%; padding: 20px 0; height: 100vh; background-color: #000; background-image: url('../images/backgrounds/academy/bg_all_grid.webp'); margin-top: 0; .main-row { min-height: 100%; } .navbar-brand img { height: 57px; } .custom-control-label::before { transition:unset; } /* Card base styles */ .card-base { background: rgba(18, 18, 18, 0.88); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55); transition: all 0.3s ease; } /* Login card */ .login-card { max-width: 560px; width: 100%; margin: 0 auto; padding: 60px 33px; } .logo-container { text-align: center; margin-bottom: 40px; } .logo-svg { height: 60px; width: auto; } .login-title { text-align: center; font-size: 25px; font-weight: 700; color: var(--aifo-white); margin-bottom: 25px; } /* Form styles */ .form-group { margin-bottom: 15px; } .form-label { font-size: 15px; color: var(--aifo-white); margin-bottom: 10px; display: block; } .form-control { height: 35px; border-radius: 10px; background: rgba(0, 0, 0, 0.20); border: 1px solid rgba(255, 255, 255, 0.18); color: var(--aifo-white); font-size: 14px; padding: 12px 16px; transition: unset; } .form-control::placeholder { color: rgba(249, 249, 249, 0.55); } .form-control:hover { background: #231f20; cursor: pointer; } .form-control:focus { background: rgba(0, 0, 0, 0.25); border-color: var(--aifo-orange); box-shadow: 0 0 0 0.1rem rgba(249, 135, 21, 0.1); color: var(--aifo-white); outline: none; } /* Password field with eye icon */ .password-wrapper { position: relative; } .password-toggle { position: absolute; right: 14px; top: 0; background: none; border: none; color: rgba(249, 249, 249, 0.55); cursor: pointer; padding: 8px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: color 0.2s ease; } .password-toggle:hover { color: rgba(249, 249, 249, 0.85); } .password-toggle svg { width: 20px; height: 20px; } /* Error message */ .error-message { background: #f2f2f2; border-radius: 8px; padding: 6px 10px; margin-top: 8px; font-size: 12px; color: #333; display: none; align-items: center; gap: 6px; } .error-message.show { display: flex; } .error-icon { color: var(--aifo-orange); font-weight: 700; font-size: 14px; line-height: 1; } /* Remember & Forgot row */ .remember-forgot { display: flex; justify-content: space-between; align-items: center; margin: 25px 0 30px; } .remember-check { display: flex; align-items: center; gap: 8px; color: rgba(249, 249, 249, 0.75); font-size: 14px; } .remember-check input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; } .forgot-link { color: var(--aifo-orange); text-decoration: none; font-size: 14px; transition: all 0.2s ease; } .forgot-link:hover { text-decoration: underline; color: #e67f12; } /* Login button */ /* Divider */ .divider { display: flex; align-items: center; margin: 30px 0; gap: 12px; } .divider-line { flex: 1; height: 1px; background: var(--aifo-white); } .divider-text { color: var(--aifo-white); font-size: 13px; white-space: nowrap; } /* Social buttons */ .social-buttons { display: flex; justify-content: center; gap: 26px; margin-bottom: 30px; } .social-btn { width: 48px; height: 48px; background: #f5f5f5; border: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); } .social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); } .social-btn svg { width: 24px; height: 24px; } /* Signup prompt */ .signup-prompt { text-align: center; color: rgba(249, 249, 249, 0.75); font-size: 14px; } .signup-link { color: var(--aifo-orange); text-decoration: none; margin-left: 4px; transition: all 0.2s ease; } .signup-link:hover { text-decoration: underline; color: #e67f12; } /* Feature cards */ .features-column { display: flex; flex-direction: column; gap: 25px; } .feature-card { background: rgba(24, 24, 24, 0.85); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 20px; padding: 30px; transition: all 0.3s ease; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); } .feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4); border-color: rgba(249, 135, 21, 0.2); } .feature-card-large { display: flex; gap: 20px; position: relative; } .feature-icon-container { flex-shrink: 0; width: 140px; } .feature-icon { width: 34px; height: 34px; display: flex; align-items: center; img { width: 100%; height: 100%; } } .feature-card.school { .feature-icon { width: 122px; height: 98px; display: flex; align-items: center; position: absolute; top: 50%; transform: translateY(-50%); img { width: 100%; height: 100%; } } } .feature-icon svg { width: 32px; height: 32px; color: var(--aifo-white); filter: drop-shadow(0 0 8px rgba(249, 135, 21, 0.6)); } .feature-content { flex: 1; } .feature-title { color: var(--aifo-orange); font-size: 24px; font-weight: 700; margin-bottom: 6px; } .feature-subtitle { color: var(--aifo-white); font-size: 15px; font-weight: 600; /* margin-bottom: 10px; */ } .feature-description { color: rgba(249, 249, 249, 0.7); font-size: 14px; line-height: 1.6; } .small-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .feature-card-small { padding: 26px; } .feature-card-small-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; } .feature-card-small .feature-icon { width: 48px; height: 48px; margin-bottom: 0; } .feature-card-small .feature-icon svg { width: 28px; height: 28px; } .feature-card-small .feature-title { font-size: 22px; margin-bottom: 8px; } .feature-card-small .feature-description { font-size: 13px; } .feature-subtitle-small { color: var(--aifo-white); font-size: 15px; font-weight: 600; margin-bottom: 10px; } /* Free Trial Card Special Styles */ .feature-card-trial { position: relative; overflow: hidden; background-image: url(../images/backgrounds/login_bg_card.png); /* position: relative; */ background-size: contain; background-position: center; background-repeat: no-repeat; background-size: 100% 100%; .feature-description { width: 250px; } } .feature-card-trial::before { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(249, 135, 21, 0.15), transparent 70%); pointer-events: none; } .trial-decoration { position: relative; flex-basis: 40%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; min-height: 200px; } .circle-container { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; } .circle { position: absolute; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.1); } .circle-outer { width: 180px; height: 180px; border-color: rgba(255, 255, 255, 0.06); } .circle-middle { width: 130px; height: 130px; border-color: rgba(255, 255, 255, 0.09); } .circle-inner { width: 80px; height: 80px; border-color: rgba(255, 255, 255, 0.12); } .play-button { position: relative; width: 64px; height: 64px; background: var(--aifo-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px rgba(249, 135, 21, 0.5); cursor: pointer; transition: all 0.3s ease; z-index: 1; } .play-button:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(249, 135, 21, 0.7); } .play-button svg { width: 28px; height: 28px; color: white; margin-left: 3px; } } .login-page::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: 0; /* position: relative; */ background-image: url(../images/backgrounds/login_bg_light.webp); /* position: relative; */ background-size: contain; background-position: center; background-repeat: no-repeat; background-size: 100% 100%; height: 870px; } @media (min-width: 1200px) { .container { max-width: 1226px; } .col-xl-8 { flex: 0 0 66.6666666667%; max-width: 580px; padding: 0; } .col-xl-4 { flex: unset; max-width: 450px; width: 450px; } .login-page { /* height: 870px; */ min-height: 100vh; height: auto; .feature-card-trial { height: 211px; } } } /* Responsive */ @media (max-width: 991px) { .login-card { margin-bottom: 30px; } .right-block { margin-top: 25px; } } @media (max-width: 767px) { .login-page { height: 100%; padding: 40px 0; .navbar-brand { position: unset; left: unset; top: unset; transform: unset; } .login-card { padding: 28px 22px; } .login-title { font-size: 26px; } .form-control { height: 50px; } .btn-aifo-primary { height: 52px; } .social-btn { width: 44px; height: 44px; } .small-cards-row { grid-template-columns: 1fr; } .feature-card-large { flex-direction: column; text-align: center; } .feature-icon-container { display: flex; justify-content: center; } .trial-decoration { margin-top: 20px; min-height: 150px; } .circle-container { width: 140px; height: 140px; } .circle-outer { width: 140px; height: 140px; } .circle-middle { width: 100px; height: 100px; } .circle-inner { width: 60px; height: 60px; } .play-button { width: 52px; height: 52px; } .play-button svg { width: 24px; height: 24px; } .feature-icon-container { width: 100%; } .feature-card.school { .feature-icon { position: unset; top: 50%; transform: unset; } } } } @media (min-width: 768px) and (max-width: 991px) { .trial-decoration { flex-basis: 35%; } .circle-container { width: 150px; height: 150px; } .circle-outer { width: 150px; height: 150px; } .circle-middle { width: 110px; height: 110px; } .circle-inner { width: 70px; height: 70px; } } /* register-page */ .register-page, .register-page-success { position: relative; z-index: 1; min-height: 100%; padding: 72px 60px; background-color: #000; background-image: url('../images/backgrounds/academy/bg_all_grid.webp'); margin-top: 0; } @media (max-width: 768px){ .register-page, .register-page-success { padding: 35px 0px; } } .signup-form { .signup-header { margin-bottom: 32px; text-align: center; } .signup-title { font-size: 25px; font-weight: 700; margin-bottom: 0; color: var(--aifo-white); } /* Card base styles */ .card-base { background: rgba(18, 18, 18, 0.88); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 24px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55); transition: all 0.3s ease; } /* Login card */ .login-card { max-width: 560px; width: 100%; margin: 0 auto; padding: 60px 33px; } .logo-svg { height: 60px; width: auto; } /* Form styles */ .form-group { margin-bottom: 15px; } .form-label { font-size: 15px; color: var(--aifo-white); margin-bottom: 10px; display: block; } .form-control { height: 40px; border-radius: 10px; background: rgba(0, 0, 0, 0.20); border: 1px solid rgba(255, 255, 255, 0.18); color: var(--aifo-white); font-size: 14px; padding: 12px 16px; transition: unset; } .form-control::placeholder { color: rgba(249, 249, 249, 0.55); } .form-control:hover { background: #231f20; cursor: pointer; } .form-control:focus { background: rgba(0, 0, 0, 0.25); border-color: var(--aifo-orange); box-shadow: 0 0 0 0.1rem rgba(249, 135, 21, 0.1); color: var(--aifo-white); outline: none; } /* Password field with eye icon */ .password-wrapper { position: relative; } .password-toggle { position: absolute; right: 14px; top: 0; /* transform: translateY(-50%); */ background: none; border: none; color: rgba(249, 249, 249, 0.55); cursor: pointer; padding: 8px; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: color 0.2s ease; } .password-toggle:hover { color: rgba(249, 249, 249, 0.85); } .password-toggle svg { width: 20px; height: 20px; } /* Phone number compound input */ .phone-input-wrapper { display: flex; gap: 0; height: 56px; background: #0E0E0E; border: 1px solid rgba(255, 255, 255, 0.18); border-radius: 12px; overflow: hidden; transition: all 0.2s ease; } .phone-input-wrapper:focus-within { border-color: #F98715; box-shadow: 0 0 0 3px rgba(249, 135, 21, 0.20); } /* =============================== Phone Input Wrapper ================================ */ .phone-wrapper { display: flex; align-items: center; background: #111; border: 1px solid #2a2a2a; border-radius: 12px; padding: 2px 10px; /* overflow: hidden; */ position: relative; } /* Country selector */ .country-select { display: flex; align-items: center; gap: 8px; border: none; cursor: pointer; color: var(--aifo-white); font-size: 14px; min-width: 80px; transition: background 0.2s ease; position: relative; } .country-select .fi { width: 24px; height: 16px; margin-right: 0px; border-radius: 2px; } .country-code { font-size: 14px; margin-right: 0px; } .arrow { font-size: 12px; opacity: .7; } /* Phone input */ .phone-input { background: transparent; border: none; color: #fff; padding: 8px 10px; flex: 1; } .phone-input::placeholder { color: #777; } .phone-input:focus { outline: none; } /* Dropdown */ .dropdown-menu { background: #111; border: 1px solid #2a2a2a; max-height: 320px; top: 10px !important; left: -9px !important; } .dropdown-item { color: #ddd; display: flex; align-items: center; } .dropdown-item:hover { background: #1c1c1c; color: #fff; } .dropdown-item .fi { width: 24px; height: 16px; margin-right: 10px; } /* Validation */ .was-validated .phone-input:invalid { color: #ff6b6b; } .dropdown:hover .dropdown-menu { display: unset; } .country-flag { font-size: 20px; line-height: 1; } .arrow.icon-downarrow { height: 16px; width: 16px; } .country-code { font-weight: 500; } .dropdown-arrow { width: 0; height: 0; border-left: 4px solid transparent; border-right: 4px solid transparent; border-top: 5px solid rgba(249, 249, 249, 0.6); margin-left: auto; } .phone-number-input { flex: 1; padding: 0 16px; background: transparent; border: none; color: #F9F9F9; font-size: 15px; font-family: 'Montserrat', sans-serif; } .phone-number-input:focus { outline: none; } .phone-number-input::placeholder { color: rgba(249, 249, 249, 0.40); } /* Checkbox styles */ .checkbox-group { margin-bottom: 16px; } .checkbox-wrapper { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; } .checkbox-wrapper:last-child { margin-bottom: 0; } .custom-checkbox { position: relative; flex-shrink: 0; width: 20px; height: 20px; margin-top: 2px; } .custom-checkbox input[type="checkbox"] { position: absolute; opacity: 0; width: 100%; height: 100%; cursor: pointer; z-index: 1; } .checkbox-box { position: absolute; top: 0; left: 0; width: 20px; height: 20px; border: 2px solid rgba(249, 249, 249, 0.25); border-radius: 4px; /* background: transparent; transition: all 0.2s ease; */ } .custom-checkbox input[type="checkbox"]:checked~.checkbox-box { background: #F98715; border-color: #F98715; } .checkbox-box::after { content: ''; position: absolute; display: none; left: 6px; top: 2px; width: 5px; height: 10px; border: solid white; border-width: 0 2px 2px 0; transform: rotate(45deg); } .custom-checkbox input[type="checkbox"]:checked~.checkbox-box::after { display: block; } .checkbox-label { font-size: 14px; line-height: 1.6; color: rgba(249, 249, 249, 0.85); flex: 1; } /* Error message */ .error-message { background: #f2f2f2; border-radius: 8px; padding: 6px 10px; margin-top: 8px; font-size: 12px; color: #333; display: none; align-items: center; gap: 6px; } .error-message.show { display: flex; } .error-icon { color: var(--aifo-orange); font-weight: 700; font-size: 14px; line-height: 1; } /* Remember & Forgot row */ .remember-forgot { display: flex; justify-content: space-between; align-items: center; margin: 25px 0 30px; } .remember-check { display: flex; align-items: center; gap: 8px; color: rgba(249, 249, 249, 0.75); font-size: 14px; } .remember-check input[type="checkbox"] { width: 18px; height: 18px; cursor: pointer; } .forgot-link { color: var(--aifo-orange); text-decoration: none; font-size: 14px; transition: all 0.2s ease; } .forgot-link:hover { text-decoration: underline; color: #e67f12; } /* Login button */ /* Divider */ .divider { display: flex; align-items: center; margin: 30px 0; gap: 12px; } .divider-line { flex: 1; height: 1px; background: var(--aifo-white); } .divider-text { color: var(--aifo-white); font-size: 13px; white-space: nowrap; } /* Social buttons */ .social-buttons { display: flex; justify-content: center; gap: 26px; margin-bottom: 30px; } .social-btn { width: 48px; height: 48px; background: #f5f5f5; border: none; border-radius: 12px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: all 0.2s ease; box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); } .social-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2); } .social-btn svg { width: 24px; height: 24px; } /* Signup prompt */ .signup-prompt { text-align: center; color: rgba(249, 249, 249, 0.75); font-size: 14px; } .signup-link { color: var(--aifo-orange); text-decoration: none; margin-left: 4px; transition: all 0.2s ease; } .signup-link:hover { text-decoration: underline; color: #e67f12; } } .register-page { .main-row { min-height: 100%; } .features-column { display: flex; flex-direction: column; gap: 25px; } .feature-card { background: rgba(24, 24, 24, 0.85); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 20px; padding: 30px; transition: all 0.3s ease; box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3); } .feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4); border-color: rgba(249, 135, 21, 0.2); } .feature-card-large { display: flex; gap: 20px; position: relative; } .feature-icon-container { flex-shrink: 0; width: 140px; } .feature-icon { width: 34px; height: 34px; display: flex; align-items: center; /* position: absolute; top: 50%; transform: translateY(-50%); */ img { width: 100%; height: 100%; } } .feature-card.school { .feature-icon { width: 122px; height: 98px; display: flex; align-items: center; position: absolute; top: 50%; transform: translateY(-50%); img { width: 100%; height: 100%; } } } .feature-icon svg { width: 32px; height: 32px; color: var(--aifo-white); filter: drop-shadow(0 0 8px rgba(249, 135, 21, 0.6)); } .feature-content { flex: 1; } .feature-title { color: var(--aifo-orange); font-size: 24px; font-weight: 700; margin-bottom: 6px; } .feature-subtitle { color: var(--aifo-white); font-size: 15px; font-weight: 600; /* margin-bottom: 10px; */ } .feature-description { color: rgba(249, 249, 249, 0.7); font-size: 14px; line-height: 1.6; } .small-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; } .feature-card-small { padding: 26px; } .feature-card-small-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; } .feature-card-small .feature-icon { width: 48px; height: 48px; margin-bottom: 0; } .feature-card-small .feature-icon svg { width: 28px; height: 28px; } .feature-card-small .feature-title { font-size: 22px; margin-bottom: 8px; } .feature-card-small .feature-description { font-size: 13px; } .feature-subtitle-small { color: var(--aifo-white); font-size: 15px; font-weight: 600; margin-bottom: 10px; } /* Free Trial Card Special Styles */ .feature-card-trial { position: relative; overflow: hidden; background-image: url(../images/backgrounds/login_bg_card.png); /* position: relative; */ background-size: contain; background-position: center; background-repeat: no-repeat; background-size: 100% 100%; .feature-description { width: 250px; } } .feature-card-trial::before { content: ''; position: absolute; top: 0; right: 0; width: 60%; height: 100%; background: radial-gradient(ellipse at 80% 50%, rgba(249, 135, 21, 0.15), transparent 70%); pointer-events: none; } .trial-decoration { position: relative; flex-basis: 40%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; min-height: 200px; } .circle-container { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; } .circle { position: absolute; border-radius: 50%; border: 2px solid rgba(255, 255, 255, 0.1); } .circle-outer { width: 180px; height: 180px; border-color: rgba(255, 255, 255, 0.06); } .circle-middle { width: 130px; height: 130px; border-color: rgba(255, 255, 255, 0.09); } .circle-inner { width: 80px; height: 80px; border-color: rgba(255, 255, 255, 0.12); } .play-button { position: relative; width: 64px; height: 64px; background: var(--aifo-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 0 30px rgba(249, 135, 21, 0.5); cursor: pointer; transition: all 0.3s ease; z-index: 1; } .play-button:hover { transform: scale(1.1); box-shadow: 0 0 40px rgba(249, 135, 21, 0.7); } .play-button svg { width: 28px; height: 28px; color: white; margin-left: 3px; } .btn-aifo-primary { width: 100%; height: 55px; background: var(--aifo-orange); color: var(--aifo-white); border: none; border-radius: 14px; font-size: 20px; font-weight: 600; } .btn-aifo-primary:hover { background: var(--aifo-orange-hover); -webkit-box-shadow: 0 8px 24px rgba(249, 135, 21, 0.35); box-shadow: 0 8px 24px rgba(249, 135, 21, 0.35); } .country-search-wrapper{ padding: 8px; } .country-search-input { width:100%; padding:6px 8px; border-radius:5px; font-size:14px; background: #3A3A3A; border:1px solid #3A3A3A; color:#fff; } .country-search-input:focus { background: #3A3A3A; border-color: #3A3A3A; -webkit-box-shadow: 0 0 0 0.1rem rgba(249, 135, 21, 0.1); box-shadow: 0 0 0 0.1rem rgba(249, 135, 21, 0.1); outline: none; } .country-search-input::placeholder { color: #7A7A79; } .country-list{ max-height:250px; overflow-y:scroll; overflow-x:hidden; scrollbar-width:auto; scrollbar-color:#7a7a7a #0a0d10; color-scheme: dark; } .country-list::-webkit-scrollbar { width: 14px; background: #0a0d10; } .country-list::-webkit-scrollbar-track { background: #0a0d10; } .country-list::-webkit-scrollbar-thumb { background: #7a7a7a; border-radius: 20px; border: 4px solid #0a0d10; min-height: 40px; } .country-list::-webkit-scrollbar-thumb:hover { background: #9a9a9a; } .country-list::-webkit-scrollbar-button:single-button:vertical:decrement{ height:24px; background-color:#0a0d10; background-repeat:no-repeat; background-position:center; background-size:10px; background-image: url("data:image/svg+xml;utf8,"); } .country-list::-webkit-scrollbar-button:single-button:vertical:increment { height:24px; background-color:#0a0d10; background-repeat:no-repeat; background-position:center; background-size:10px; background-image: url("data:image/svg+xml;utf8,"); } .dropdown-menu .country-list .dropdown-item { font-size: 0.875rem; font-weight: 500; } .country-item{ display:flex; align-items:center; justify-content:space-between; } .country-item .country-name{ flex:1; margin-left:8px; } .signup-form .dropdown-menu { overflow-y: unset; } .signup-form .dropdown-item { display: block; } } .register-page::before, .register-page-success::before { content: ''; position: absolute; top: 0; left: 0; /* right: 0; */ bottom: 0; pointer-events: none; z-index: 0; background-image: url(../images/backgrounds/login_bg_light.svg); height: 500px; width: 500px; background-repeat: no-repeat; background-size: contain; } @media (max-width: 767px) { .register-page { height: 100%; padding: 22px 0px; .navbar-brand { position: unset; left: unset; top: unset; transform: unset; } .login-card { padding: 28px 22px; } .login-title { font-size: 26px; } .form-control { height: 50px; } .btn-aifo-primary { height: 52px; } .social-btn { width: 44px; height: 44px; } .small-cards-row { grid-template-columns: 1fr; } .feature-card-large { flex-direction: column; text-align: center; } .feature-icon-container { display: flex; justify-content: center; } .trial-decoration { margin-top: 20px; min-height: 150px; } .circle-container { width: 140px; height: 140px; } .circle-outer { width: 140px; height: 140px; } .circle-middle { width: 100px; height: 100px; } .circle-inner { width: 60px; height: 60px; } .play-button { width: 52px; height: 52px; } .play-button svg { width: 24px; height: 24px; } .feature-icon-container { width: 100%; } .feature-card.school { .feature-icon { position: unset; top: 50%; transform: unset; } } } .register-page::before, .register-page-success::before { width: 100%; } .signup-form .dropdown-menu { max-height: 321px; } } .register-page-success { /* Main page wrapper */ .page-wrap { min-height: 100%; padding: 24px 16px; position: relative; z-index: 1; display: flex; align-items: center; justify-content: center; } /* Card */ .verify-card { max-width: 560px; width: 100%; /* background: rgba(15,15,15,0.92); */ border: 1px solid rgba(249, 249, 249, 0.18); border-radius: 28px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55); padding: 80px 33px 150px; text-align: center; overflow: hidden; background-image: url(../images/backgrounds/register_success.png); background-size: contain; background-position: center; background-repeat: no-repeat; background-size: 100% 100%; } @supports (backdrop-filter: blur(6px)) { .verify-card { backdrop-filter: blur(6px); } } @media (max-width: 991px) and (min-width: 768px) { .verify-card { max-width: 520px; padding: 40px 40px 38px; } } @media (max-width: 767px) { .verify-card { padding: 32px 22px 28px; } } /* Icon */ .verify-icon { margin-bottom: 60px; } .verify-icon svg { width: 96px; height: 96px; filter: drop-shadow(0 8px 24px rgba(249, 135, 21, 0.4)); } /* Title */ .verify-title { color: #F9F9F9; font-weight: 700; font-size: 25px; line-height: 1.2; margin-bottom: 60px; } @media (max-width: 767px) { .verify-title { font-size: 28px; } } /* Alert box */ .verify-alert { background: #3A250F; border-radius: 14px; padding: 18px; margin-bottom: 40px; display: flex; align-items: flex-start; } .verify-alert__icon { width: 20px; height: 20px; background: #F98715; border-radius: 4px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: white; font-size: 14px; font-weight: 700; line-height: 1; margin-right: 14px; } .verify-alert__text { color: rgba(249, 249, 249, 0.85); font-size: 15px; line-height: 1.6; text-align: left; flex: 1; } /* .bg-orange-bottom{ position: absolute; inset: 0; background: radial-gradient(circle at 50% 100%, rgba(249, 135, 21, 0.15) 0%, transparent 30%); z-index: -1; bottom: -23px; } */ @media (max-width: 767px) { .verify-alert__text { font-size: 14px; } } /* Button */ .btn-verify { width: 100%; height: 56px; background: #F98715; color: #FFFFFF; border: none; border-radius: 12px; font-size: 24px; font-weight: 600; margin-bottom: 30px; cursor: pointer; transition: all 0.2s ease; display: flex; align-items: center; justify-content: center; } .btn-verify:hover { background: #E97C10; } .btn-verify:active { transform: translateY(1px); } .btn-verify:focus { outline: none; box-shadow: 0 0 0 0.2rem rgba(249, 135, 21, 0.35); } .btn-verify:disabled { opacity: 0.6; cursor: not-allowed; } @media (max-width: 991px) and (min-width: 768px) { .btn-verify { font-size: 22px; } } @media (max-width: 767px) { .btn-verify { font-size: 20px; height: 52px; } } /* Footer text */ .verify-footer { color: rgba(249, 249, 249, 0.70); font-size: 16px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; } .verify-footer__text { margin-right: 16px; } .verify-footer__link { color: #F98715; text-decoration: none; cursor: pointer; transition: all 0.2s ease; } .verify-footer__link:hover { text-decoration: underline; color: #FFA033; } .verify-footer__link.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; } @media (max-width: 576px) { .verify-footer { font-size: 15px; } .verify-footer__text { margin-right: 12px; } } } @media (max-width: 768px) { .mb-hidden { display: none !important; } } /* affliate login */ #affliate-login, #affliate-register { .steps-card { background: rgba(28, 28, 28, 0.92); } .glass-card { background: rgba(20, 20, 20, 0.92); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 20px; box-shadow: 0 18px 50px rgba(0, 0, 0, 0.55); padding: 50px; height: fit-content; } .steps-title { font-size: 25px; font-weight: 700; line-height: 1.3; margin-bottom: 30px; width: 202px; margin: 0 auto; } @media (max-width: 767px) { .steps-title { font-size: 26px; } } .timeline-wrapper { position: relative; padding-left: 50px; padding-top: 50px; } .timeline-line { position: absolute; left: 2px; top: 52px; bottom: 104px; width: 23px; background-image: url('../images/backgrounds/bg_line.webp'); background-position: center; background-repeat: no-repeat; background-size: 100% 100%; } .step-item { position: relative; margin-bottom: 40px; padding-left: 8px; } .step-item:last-child { margin-bottom: 0; } .step-number { position: absolute; left: -50px; top: 0; width: 26px; height: 26px; background: var(--aifo-orange); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 13px; font-weight: 700; z-index: 1; } .step-label { color: var(--aifo-orange); font-size: 15px; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; } .step-title { color: #F9F9F9; font-size: 15px; font-weight: 700; margin-bottom: 8px; line-height: 1.4; } .step-desc { color: rgba(249, 249, 249, 0.65); font-size: 14px; line-height: 1.6; } @media (min-width: 992px) { .login-card-col { max-width: 520px; } .steps-card-col { max-width: 720px; } } } /* affiiate register */ #affliate-register { height: auto; .main-row { min-height: 100%; } /* riegister submit */ /* email varify */ .verification-card { background: #0e0e0e; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.08); border-radius: 24px; box-shadow: 0 20px 60px rgba(0,0,0,0.55); padding: 80px 33px; max-width: 520px; width: 100%; animation: cardEnter 0.26s ease-out; .email-icon{ height: 91px; width: 91px; margin: 0 auto; img{ width: 100%; height: 100%; } } } @keyframes cardEnter { from { opacity: 0; transform: scale(0.98); } to { opacity: 1; transform: scale(1); } } @media (max-width: 575.98px) { .verification-card { padding: 36px 24px 40px; } } .envelope-icon { width: 72px; height: 72px; margin: 0 auto 18px; filter: drop-shadow(0 4px 12px rgba(249,135,21,0.2)); } .main-title { font-size: 25px; font-weight: 600; color: #F9F9F9; text-align: center; line-height: 1.25; margin-bottom: 60px; margin-top: 35px; } @media (max-width: 575.98px) { .main-title { font-size: 24px; } } .info-toast { background: #31200f; border-radius: 14px; padding: 13px 16px; margin-bottom: 20px; display: flex; align-items: flex-start; gap: 12px; } .info-icon-container { flex-shrink: 0; width: 20px; height: 20px; border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--aifo-white); background:var(--aifo-orange); font-weight: 700; font-size: 13px; margin-top: 1px; } .info-text { font-size: 12.5px; color: var(--aifo-white); line-height: 1.5; flex: 1; } .error-toast { background: rgba(239,68,68,0.18); border-radius: 14px; padding: 13px 16px; margin-bottom: 16px; display: none; align-items: flex-start; gap: 12px; } .error-icon-container { flex-shrink: 0; width: 20px; height: 20px; background: rgba(127,29,29,0.4); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #EF4444; font-weight: 700; font-size: 13px; margin-top: 1px; } .error-text { font-size: 12.5px; color: rgba(249,249,249,0.75); line-height: 1.5; flex: 1; } .success-toast { background: rgba(34,197,94,0.18); border-radius: 14px; padding: 13px 16px; margin-bottom: 16px; display: none; align-items: flex-start; gap: 12px; } .success-icon-container { flex-shrink: 0; width: 20px; height: 20px; background: rgba(20,83,45,0.4); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: #22C55E; font-weight: 700; font-size: 13px; margin-top: 1px; } .success-text { font-size: 12.5px; color: rgba(249,249,249,0.75); line-height: 1.5; flex: 1; } .code-input { width: 100%; height: 46px; background: rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.15); border-radius: 11px; color: #F9F9F9; font-size: 16px; text-align: center; padding: 0 16px; transition: all 0.2s ease; outline: none; letter-spacing: 0.5em; } .code-input::placeholder { color: rgba(249,249,249,0.35); letter-spacing: normal; } .code-input:focus { border-color: rgba(249,135,21,0.5); box-shadow: 0 0 0 3px rgba(249,135,21,0.18); } .verify-btn { width: 100%; height: 46px; background: #F98715; color: #FFFFFF; border: none; border-radius: 11px; font-size: 15px; font-weight: 600; margin-top: 40px; cursor: pointer; transition: all 0.2s ease; position: relative; overflow: hidden; } .verify-btn:hover:not(:disabled) { background: #E07610; box-shadow: 0 4px 16px rgba(249,135,21,0.3); } .verify-btn:active:not(:disabled) { transform: translateY(1px); } .verify-btn:disabled { opacity: 0.5; cursor: not-allowed; } .verify-btn .btn-text { display: inline-block; } .verify-btn .spinner { display: none; width: 18px; height: 18px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #FFFFFF; border-radius: 50%; animation: spin 0.6s linear infinite; margin: 0 auto; } @keyframes spin { to { transform: rotate(360deg); } } .verify-btn.loading .btn-text { display: none; } .verify-btn.loading .spinner { display: block; } .resend-section { margin-top: 30px; text-align: center; font-size: 12px; } .resend-text { color: var(--aifo-white); } .resend-link { color: var(--aifo-orange); text-decoration: none; margin-left: 4px; cursor: pointer; transition: all 0.2s ease; } .resend-link:hover { text-decoration: underline; color: #FFA033; } .resend-link.disabled { opacity: 0.5; cursor: not-allowed; pointer-events: none; } @media (max-width: 768px) { .questionnaire-modal { padding: 0px; } } /* email varify end */ /* Questionnaire Modal Styles */ .modal-overlay { display: none; position: fixed; top: 0; left: 0; bottom: 0; width: 100%; height: 100%; height: auto; background-color: #000; background-image:url('../images/backgrounds/academy/bg_all_grid.webp'); z-index: 1000; align-items: center; justify-content: center; } .modal-overlay::before{ content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; pointer-events: none; z-index: -1; background-image: url(../images/backgrounds/a_bg_reg.webp); background-size: contain; background-position: center; background-repeat: no-repeat; background-size: 100% 100%; height: 500px; } .questionnaire-modal { border-radius: 20px; padding: 40px; max-width: 712px; width: 100%; max-height: unset; position: relative; } /* question step start*/ .main-container { position: relative; z-index: 2; width: 100%; min-height: 100%; display: flex; align-items: center; justify-content: center; padding: 40px 16px; } .questionnaire-card { background: rgba(20,20,20,0.92); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; box-shadow: 0 18px 50px rgba(0,0,0,0.55); max-width: 780px; width: 100%; max-height: calc(100% - 80px); display: flex; flex-direction: column; overflow: hidden; } .card-content { padding: 36px; overflow-y: auto; flex: 1; } .back-button { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; margin-bottom: 32px; cursor: pointer; border: none; background: transparent; padding: 0; transition: all 0.2s ease; } // .back-button:hover { // opacity: 0.8; // } .back-icon { width: 22px; height: 22px; background: var(--aifo-orange); border-radius: 5px; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; font-weight: bold; transition: all 0.2s ease; } .back-button:hover .back-icon { box-shadow: 0 0 12px rgba(249,135,21,0.4); } .back-text { color: #F9F9F9; font-size: 16px; font-weight: 500; } .question-section { margin-bottom: 26px; } .question-title { color: #ffffff; font-size: 17px; font-weight: 600; line-height: 1.4; margin-bottom: 16px; } .options-container { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; } .custom-checkbox { position: relative; padding-left: 0; margin-bottom: 0; } .custom-checkbox label { display: flex; align-items: flex-start; cursor: pointer; color: #ffffff; font-size: 14px; font-weight: 300; line-height: 1.4; padding: 10px 4px; background: transparent; border: none; border-radius: 8px; transition: all 0.2s ease; user-select: none; } .custom-checkbox label:hover { opacity: 0.8; } .custom-checkbox input[type="checkbox"] { position: absolute; opacity: 0; // width: 0; // height: 0; } .checkbox-custom { min-width: 18px; width: 18px; height: 18px; background: #2a2a2a; border: 1px solid rgba(255,255,255,0.12); border-radius: 4px; margin-right: 10px; margin-top: 1px; position: relative; transition: all 0.2s ease; flex-shrink: 0; } .checkbox-custom::after { content: '✓'; position: absolute; top: 17%; left: 38%; transform: translate(-50%, -50%) scale(0); color: white; font-size: 12px; font-weight: bold; transition: transform 0.2s ease; } .custom-checkbox input[type="checkbox"]:checked + label .checkbox-custom { background: #F98715; border-color: #F98715; } .custom-checkbox input[type="checkbox"]:checked + label .checkbox-custom::after { transform: translate(-50%, -50%) scale(1); } .error-message { color: #ff4444; font-size: 13px; margin-top: 8px; display: none; } .question-section.has-error .question-title { color: #ffffff; } .cta-section { padding: 24px 36px; background: rgba(20,20,20,0.95); border-top: 1px solid rgba(255,255,255,0.08); position: sticky; bottom: 0; z-index: 10; } .cta-button { width: 100%; height: 54px; background: #F98715; color: #ffffff; font-size: 19px; font-weight: 600; border: none; border-radius: 11px; cursor: pointer; transition: all 0.3s ease; box-shadow: 0 4px 14px rgba(249,135,21,0.15); } .cta-button:hover:not(:disabled) { background: #ff9a2e; box-shadow: 0 10px 24px rgba(249,135,21,0.35); transform: translateY(-1px); } .cta-button:disabled { opacity: 0.5; cursor: not-allowed; } /* Mobile adaptation */ @media (max-width: 767px) { .main-container { padding: 20px 16px; } .questionnaire-card { max-height: calc(100% - 40px); } .card-content { padding: 24px; } .question-title { font-size: 16px; } .options-container { grid-template-columns: 1fr; } .cta-section { padding: 20px 24px; } .cta-button { height: 52px; font-size: 18px; } .questionnaireModalStep .questionnaire-modal{ .question_content { max-height: 559px; padding-right: 20px; } .card-content { padding: 24px 14px; } } } /* Tablet adaptation */ @media (min-width: 768px) and (max-width: 991px) { .questionnaire-card { max-width: 90%; } } /* Scrollbar styles */ .card-content::-webkit-scrollbar { width: 8px; } .card-content::-webkit-scrollbar-track { background: rgba(255,255,255,0.05); border-radius: 4px; } .card-content::-webkit-scrollbar-thumb { background: rgba(249,135,21,0.3); border-radius: 4px; } .card-content::-webkit-scrollbar-thumb:hover { background: rgba(249,135,21,0.5); } .question_content { height: auto; min-height: 100px; max-height: 650px; overflow-y: scroll; overflow-x: hidden; grid-template-columns: repeat(2, 356px); grid-gap: 22px; padding-right: 40px; } .question_content::-webkit-scrollbar { width: 8px; } .question_content::-webkit-scrollbar-thumb { background: #F98715; border-radius: 5px; } /* sub question step 2 */ /* question step end*/ }