/*
Theme Name: Alpha AI
Description: An HTML5 version.
Version: 1.0
Tags: html5, naked, clean, basic
*/

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
}

.header {
  background-color: #fbfbfb;
  display: inline-block;
  width: 100%;
  padding: 20px 0;
}

.headerinner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.logo {
  display: inline-block;
  width: auto;
}

.logo a {
  display: inline-block;
  width: auto;
  font-size: 20px;
  color: #000;
  text-decoration: none;
}

.logo a img {
  display: inline-block;
  max-width: 315px;
}

.menuarea {
  display: inline-block;
  width: auto;
}

.desktop_menu {
  display: inline-block;
  width: auto;
}

.desktop_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
}

.desktop_menu ul li {
  display: inline-block;
  margin: 0 15px;
}

.desktop_menu ul li a {
  display: inline-block;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  padding: 8px 0;
}

.desktop_menu ul li a:hover {
  color: #ff9805;
}

.desktop_menu ul li.current-menu-item a {
  color: #03d9ff;
}

.menuarea .auth_menu {
  display: inline-block;
  vertical-align: middle;
  margin-left: 20px;
}

.menuarea .auth_link {
  display: inline-block;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  padding: 8px 12px;
}

.menuarea .auth_link:hover {
  color: #ff9805;
}

.menuarea .auth_user {
  position: relative;
  display: inline-block;
}

.menuarea .auth_user_toggle {
  display: inline-flex;
  align-items: center;
  font-size: 15px;
  color: #000000;
  cursor: pointer;
  padding: 8px 12px;
  user-select: none;
}

.menuarea .auth_user_toggle:hover {
  color: #ff9805;
}

.menuarea .auth_user_toggle .fa-solid {
  margin: -2px 0 0 5px;
  font-size: 12px;
}

.menuarea .auth_user_menu {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  min-width: 180px;
  background-color: #ffffff;
  border: 1px solid #eeeeee;
  list-style: none;
  margin: 0;
  padding: 0;
  z-index: 100;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.menuarea .auth_user.open .auth_user_menu {
  display: block;
}

.menuarea .auth_user_menu li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
}

.menuarea .auth_user_menu li:last-child {
  border-bottom: none;
}

.menuarea .auth_user_menu li a {
  display: block;
  width: 100%;
  padding: 10px 14px;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}

.menuarea .auth_user_menu li a:hover {
  color: #ff9805;
  background-color: #fbfbfb;
}

.mobile_menu {
  display: none;
}

.mobile_menu .fa-bars {
  font-size: 22px;
  color: #000000;
  cursor: pointer;
}

.mobilemenuwrap {
  position: fixed;
  left: -100%;
  top: 0;
  width: 280px;
  height: 100%;
  background-color: #ffffff;
  transition: all 0.3s linear;
  z-index: 9999;
  overflow-y: auto;
}

.mobilemenuwrap.in {
  left: 0;
}

.mobilemenu_logo {
  display: block;
  width: 100%;
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #eeeeee;
}

.mobilemenu_logo a {
  display: inline-block;
  width: 100%;
}

.mobilemenu_logo a img {
  display: inline-block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.mobilemenu_nav {
  display: block;
  width: 100%;
  padding: 10px 0;
}

.mobilemenu_nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobilemenu_nav ul li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
}

.mobilemenu_nav ul li a {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
}

.mobilemenu_nav ul li a:hover {
  color: #ff9805;
}

.mobilemenu_nav ul li.current-menu-item a {
  color: #03d9ff;
}

.mobilemenuwrap .auth_menu {
  display: block;
  width: 100%;
  border-top: 1px solid #eeeeee;
}

.mobilemenuwrap .auth_link {
  display: block;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  color: #000000;
  text-decoration: none;
  border-bottom: 1px solid #f3f3f3;
}

.mobilemenuwrap .auth_link:hover {
  color: #ff9805;
}

.mobilemenuwrap .auth_user {
  display: block;
  width: 100%;
}

.mobilemenuwrap .auth_user_toggle {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 14px 20px;
  font-size: 15px;
  color: #000000;
  cursor: pointer;
  border-bottom: 1px solid #f3f3f3;
  user-select: none;
}

.mobilemenuwrap .auth_user_toggle .fa-solid {
  margin: -2px 0 0 5px;
  font-size: 12px;
}

.mobilemenuwrap .auth_user_menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #fbfbfb;
}

.mobilemenuwrap .auth_user.open .auth_user_menu {
  display: block;
}

.mobilemenuwrap .auth_user_menu li {
  display: block;
  width: 100%;
  border-bottom: 1px solid #f3f3f3;
}

.mobilemenuwrap .auth_user_menu li a {
  display: block;
  width: 100%;
  padding: 12px 30px;
  font-size: 14px;
  color: #000000;
  text-decoration: none;
}

.mobilemenuwrap .auth_user_menu li a:hover {
  color: #ff9805;
}

.auth_user_menu .fa-solid {
  margin: 0 6px 0 0;
}

/*--Auth pages (login, signup, forgot password)--*/
.auth_section {
  padding: 80px 0;
  background-color: #f5f7fa;
  width: 100%;
}

.auth_card_wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.auth_card {
  width: 100%;
  max-width: 480px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.auth_card h2 {
  font-size: 22px;
  font-weight: 700;
  color: #000000;
  margin: 0 0 6px 0;
}

.auth_card .auth_subtitle {
  font-size: 13px;
  color: #666666;
  margin: 0 0 22px 0;
  line-height: 1.5;
}

.auth_field {
  margin-bottom: 18px;
  position: relative;
}

.auth_field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333333;
  margin-bottom: 6px;
}

.auth_field input[type="text"],
.auth_field input[type="email"],
.auth_field input[type="password"] {
  width: 100%;
  padding: 12px 40px 12px 14px;
  font-size: 14px;
  color: #000000;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  outline: none;
  font-family: inherit;
  transition: border-color 0.2s linear;
}

.auth_field input:focus {
  border-color: #ff9805;
}

.auth_field .field_icon {
  position: absolute;
  right: 14px;
  top: 38px;
  color: #999999;
  font-size: 14px;
}

.auth_field .field_icon.toggle {
  cursor: pointer;
}

.auth_field .field_helper {
  font-size: 12px;
  color: #777777;
  margin-top: 6px;
}

.auth_row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.auth_remember {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #333333;
  margin: 0;
  cursor: pointer;
}

.auth_remember input[type="checkbox"] {
  margin-right: 8px;
}

.auth_forgot {
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  font-weight: 600;
}

.auth_forgot:hover {
  color: #ff9805;
}

.auth_terms {
  display: flex;
  align-items: flex-start;
  margin: 0 0 20px 0;
  font-size: 13px;
  color: #333333;
  line-height: 1.5;
  cursor: pointer;
}

.auth_terms input[type="checkbox"] {
  margin: 3px 8px 0 0;
  flex-shrink: 0;
}

.auth_terms a {
  color: #03d9ff;
  text-decoration: none;
}

.auth_terms a:hover {
  color: #ff9805;
}

.auth_btn {
  display: block;
  width: 100%;
  padding: 13px;
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
  background-color: #ff9805;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: opacity 0.2s linear;
}

.auth_btn:hover {
  opacity: 0.9;
}

.auth_alt {
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #666666;
}

.auth_alt a {
  color: #000000;
  font-weight: 600;
  text-decoration: none;
  margin-left: 4px;
}

.auth_alt a:hover {
  color: #ff9805;
}

.auth_back {
  display: block;
  text-align: center;
  margin-top: 16px;
  font-size: 13px;
  color: #000000;
  text-decoration: none;
  font-weight: 500;
}

.auth_back:hover {
  color: #ff9805;
}
