@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --oy-primary: #009ef7;
  --oy-primary-active: #0095e8;
  --oy-success: #50cd89;
  --oy-danger: #f1416c;
  --oy-gray-800: #181c32;
  --oy-gray-700: #3f4254;
  --oy-gray-600: #7e8299;
  --oy-gray-500: #a1a5b7;
  --oy-gray-300: #e4e6ef;
  --oy-gray-200: #eff2f5;
  --oy-body: #f5f8fa;
  --oy-white: #ffffff;
  --oy-font: Inter, Helvetica, "Segoe UI", Arial, sans-serif;
  --oy-aside-w: 350px;
  --oy-aside-w-xl: 500px;
}

html,
body {
  font-family: var(--oy-font) !important;
  background: var(--oy-body) !important;
  color: var(--oy-gray-700);
}

body.oy-auth,
body.oy-app {
  min-height: 100vh;
}

a {
  color: var(--oy-primary);
}
a:hover {
  color: var(--oy-primary-active);
}

.oy-brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  text-decoration: none !important;
}
.oy-logo {
  display: block;
  height: 40px;
  width: auto;
  max-width: none;
  object-fit: contain;
}
.oy-logo-sm,
.oy-header .oy-logo {
  height: 15px;
  width: auto;
}

/* Auth split layout — archived oydisk.com homepage */
.oy-auth-root {
  display: flex;
  min-height: 100vh;
  background: var(--oy-body);
}
.oy-auth-aside {
  display: none;
  flex: 0 0 var(--oy-aside-w);
  width: var(--oy-aside-w);
  color: #fff;
  background: #1b84ff;
  position: relative;
}
.mb-11 { margin-bottom: 2.75rem !important; }
.p-12 { padding: 3rem !important; }

.oy-auth-aside-inner {
  width: 100%;
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 48px 36px 28px;
  background: #1b84ff url("../img/auth-bg.png") center / cover no-repeat;
}
.oy-auth-brand {
  display: flex;
  justify-content: center;
  margin: 48px 0 24px;
}
.oy-auth-brand .oy-logo {
  height: 44px;
  width: auto;
  max-width: none;
}
.oy-auth-steps {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 16px 8px 24px;
  list-style: none;
  margin: 0;
}
.oy-step {
  display: flex;
  align-items: flex-start;
  position: relative;
  padding-bottom: 28px;
}
.oy-step:last-child {
  padding-bottom: 0;
}
.oy-step-num {
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  margin-right: 16px;
  background: transparent;
  position: relative;
  z-index: 1;
}
.oy-step.current .oy-step-num {
  background: #fff;
  color: var(--oy-primary);
  border-color: #fff;
}
.oy-step:not(:last-child):before {
  content: "";
  position: absolute;
  left: 19px;
  top: 40px;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.35);
}
.oy-step-title {
  margin: 0 0 2px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #fff;
}
.oy-step-desc {
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}
.oy-auth-legal {
  display: flex;
  justify-content: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 16px 0 8px;
}
.oy-auth-legal a {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 0.9rem;
}
.oy-auth-legal a:hover {
  color: #fff;
}

.oy-auth-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}
.oy-auth-card {
  background: var(--oy-white);
  border-radius: 16px;
  width: 100%;
  max-width: 600px;
  padding: 48px 56px 28px;
  box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.08);
}
.oy-auth-card h1,
.oy-auth-title {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--oy-gray-800);
  text-align: center;
  margin: 0 0 8px;
}
.oy-auth-sub {
  text-align: center;
  color: var(--oy-gray-500);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 32px;
}
.oy-auth-card .form-control,
.oy-auth-card .form-select {
  background: transparent;
  border: 1px solid var(--oy-gray-300);
  border-radius: 8px;
  min-height: 46px;
  padding: 11px 14px;
  font-size: 1rem;
  color: var(--oy-gray-700);
}
.oy-auth-card .form-control:focus {
  border-color: var(--oy-primary);
  box-shadow: 0 0 0 0.2rem rgba(0, 158, 247, 0.15);
}
.oy-btn-primary,
.oy-auth-card .btn-primary,
.oy-auth-card .btn-brand-02,
.oy-auth-card .btn-brand-03,
.oy-auth-card .btn-block {
  display: block;
  width: 100%;
  background: var(--oy-primary) !important;
  border-color: var(--oy-primary) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 8px;
  padding: 12px 16px;
  min-height: 46px;
}
.oy-btn-primary:hover,
.oy-auth-card .btn-primary:hover,
.oy-auth-card .btn-brand-02:hover {
  background: var(--oy-primary-active) !important;
  border-color: var(--oy-primary-active) !important;
}
.oy-auth-meta {
  text-align: center;
  color: var(--oy-gray-500);
  font-weight: 600;
  margin-top: 8px;
}
.oy-auth-toolbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  max-width: 600px;
  width: 100%;
  margin-top: 18px;
  padding: 0 12px;
}
.oy-auth-toolbar .oy-header-nav {
  display: flex !important;
  margin-left: auto;
}
.oy-more {
  position: relative;
}
.oy-more > a,
.oy-more > button {
  color: var(--oy-primary);
  font-weight: 600;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}
.oy-more .dropdown-menu {
  min-width: 160px;
  border: 0;
  border-radius: 8px;
  box-shadow: 0 0 50px 0 rgba(82, 63, 105, 0.15);
  padding: 8px 0;
}
.oy-more .dropdown-item {
  font-weight: 600;
  color: var(--oy-gray-700);
  padding: 8px 16px;
}
.oy-more .dropdown-item:hover {
  background: var(--oy-gray-200);
  color: var(--oy-primary);
}

@media (min-width: 992px) {
  .oy-auth-aside {
    display: flex;
  }
}
@media (min-width: 1200px) {
  .oy-auth-aside {
    flex-basis: var(--oy-aside-w-xl);
    width: var(--oy-aside-w-xl);
  }
}

/* Inner app pages */
.oy-header {
  background: var(--oy-white);
  border-bottom: 1px solid var(--oy-gray-200);
  position: sticky;
  top: 0;
  z-index: 100;
}
.oy-header .container,
.oy-header-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.oy-header .oy-brand {
  line-height: 0;
}
.oy-header-nav {
  display: none;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 4px;
  flex: 0 0 auto;
  flex-direction: row;
}
@media (min-width: 992px) {
  .oy-header-nav {
    display: flex;
  }
}
.oy-header-nav a,
.oy-header-nav .nav-link {
  color: var(--oy-gray-700) !important;
  font-weight: 600;
  padding: 10px 14px !important;
  border-radius: 6px;
  text-decoration: none;
}
.oy-header-nav a:hover,
.oy-header-nav .nav-link:hover {
  color: var(--oy-primary) !important;
  background: var(--oy-gray-200);
}
.oy-header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.btn-oy-login,
.oy-header .btn-primary,
.oy-header .btn-sm.btn-primary {
  background: var(--oy-primary) !important;
  border-color: var(--oy-primary) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 16px;
}
.btn-oy-register,
.oy-header .btn-danger {
  background: var(--oy-danger) !important;
  border-color: var(--oy-danger) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 6px;
  padding: 8px 16px;
}

.oy-toolbar {
  background: #1b84ff url("../img/auth-bg.png") center / cover no-repeat;
  color: #fff;
  padding: 48px 0 64px;
}
.oy-toolbar .container,
.oy-toolbar-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}
.oy-toolbar h1,
.oy-toolbar h2,
.oy-page-heading {
  color: #fff !important;
  font-weight: 700;
  font-size: 1.65rem;
  margin: 0;
}
.oy-page-heading .oy-page-desc,
.oy-page-desc,
.oy-toolbar .lead,
.oy-toolbar p {
  display: block;
  color: rgba(255, 255, 255, 0.55) !important;
  font-weight: 600;
  font-size: 1rem;
  margin: 12px 0 0;
}

body.oy-app .oy-content > section.bg-image,
body.oy-app .oy-content > section.ptb-100.justify-content-center,
body.oy-app .oy-content > section.ptb-120.justify-content-center {
  display: none;
}

.oy-content {
  max-width: 1320px;
  margin: -40px auto 0;
  padding: 0 24px 40px;
  position: relative;
  z-index: 2;
}
.oy-card,
.oy-content .card,
.oy-content .login-signup-wrap,
.oy-content .contact-us-form-wrap,
.oy-content .bg-white {
  background: var(--oy-white);
  border: 0;
  border-radius: 12px;
  box-shadow: 0 0 20px 0 rgba(76, 87, 125, 0.05);
}
.oy-card-body,
.oy-content .card-body {
  padding: 28px;
}

.oy-footer {
  max-width: 1320px;
  margin: 0 auto;
  padding: 16px 24px 32px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  color: var(--oy-gray-500);
  font-weight: 600;
}
.oy-footer a {
  color: var(--oy-gray-600);
  font-weight: 600;
  margin-left: 16px;
}

/* Recolor leftover IceyFile heroes */
.background-image-wraper.custom-overlay,
.bg-image > .custom-overlay,
.page-header-section[style*="#5d94de"] {
  background: #1b84ff url("../img/auth-bg.png") center / cover no-repeat !important;
  opacity: 1 !important;
}
.btn-brand-01,
.btn-brand-02,
.btn-brand-03,
.animated-btn.btn-brand-03 {
  background: var(--oy-primary) !important;
  border-color: var(--oy-primary) !important;
  color: #fff !important;
  box-shadow: none !important;
}
.color-primary,
.icon-size-lg.color-primary {
  color: var(--oy-primary) !important;
}
.primary-bg {
  background: var(--oy-primary) !important;
}
.header-main .btn-brand-03 {
  background: var(--oy-primary) !important;
}

/* FAQ accordion to match archive */
.oy-faq .oy-faq-item {
  border-bottom: 1px dashed var(--oy-gray-300);
}
.oy-faq .oy-faq-item:last-child {
  border-bottom: 0;
}
.oy-faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  cursor: pointer;
  color: var(--oy-gray-700);
  font-weight: 700;
  text-decoration: none !important;
}
.oy-faq-q:hover {
  color: var(--oy-primary);
}
.oy-faq .oy-faq-icon,
.oy-faq .oy-faq-icon.ti-plus,
.oy-faq .oy-faq-icon.ti-minus {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  height: 18px !important;
  min-width: 18px !important;
  flex: 0 0 18px !important;
  background: none !important;
  background-image: none !important;
  color: #a1a5b7 !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 22px !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  speak: normal !important;
}
.oy-faq .oy-faq-icon::before,
.oy-faq .oy-faq-icon::after,
.oy-faq .oy-faq-icon.ti-plus::before,
.oy-faq .oy-faq-icon.ti-minus::before,
.oy-faq .oy-faq-icon.ti-plus::after,
.oy-faq .oy-faq-icon.ti-minus::after {
  content: none !important;
  display: none !important;
}
.oy-faq .oy-faq-plus,
.oy-faq .oy-faq-minus {
  display: none !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-style: normal !important;
  font-weight: 400 !important;
  color: #a1a5b7 !important;
  line-height: 1 !important;
}
.oy-faq .oy-faq-plus {
  display: inline !important;
}
.oy-faq-q[aria-expanded="true"] .oy-faq-plus {
  display: none !important;
}
.oy-faq-q[aria-expanded="true"] .oy-faq-minus {
  display: inline !important;
}
.oy-faq-a {
  padding: 0 0 16px 44px;
  color: var(--oy-gray-600);
  font-weight: 600;
}

/* Pricing cards on light app background */
.pricing-section.gray-light-bg,
.gray-light-bg {
  background: transparent !important;
}
.single-pricing-pack {
  border: 0 !important;
  border-radius: 12px !important;
  box-shadow: 0 0 20px 0 rgba(76, 87, 125, 0.05);
}
.single-pricing-pack .pricing-header {
  background: #fff !important;
}
.monthly-price.color-secondary {
  color: var(--oy-gray-800) !important;
}

.oy-header .navbar-toggler,
.hamburger-toggle,
#hamburgerTrigger {
  display: none !important;
}

@media (max-width: 991.98px) {
  .oy-header-inner {
    flex-wrap: nowrap;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .oy-header-nav {
    display: none !important;
  }
  .oy-header-actions {
    display: flex;
    margin-left: auto;
  }
  .oy-header-actions .btn {
    white-space: nowrap;
  }
  .oy-auth-card {
    padding: 32px 22px;
  }
}

.footer-1.dark-bg,
.footer-bottom {
  display: none;
}
body.oy-app .header-main,
body.oy-auth .header-main {
  display: none;
}
body.oy-app .scroll-top,
body.oy-auth .scroll-top {
  background: var(--oy-primary) !important;
}
