/* ========== Color Variables ========== */
:root {
    --primary-yellow: #ffd966;
    --border-color: #000;
    --black: #000;
    --white: #fff;
}

/* ========== Navigation Pills ========== */
.custom-pills .nav-link,
.custom-pills .nav-link.active {
    border: 1px solid var(--black);
    border-radius: 50px;
    background: var(--white);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.custom-pills .nav-link:hover {
    background: #f8f9fa;
}

.custom-pills .nav-link.active {
    background: var(--primary-yellow);
}

.custom-pills .icon {
    margin-right: 0.5rem;
}

.custom-pills .divider {
    border-right: 1px solid var(--black);
    margin-right: 0.75rem;
    padding-right: 0.75rem;
    display: inline-block;
    height: 24px;
    align-self: center;
}

/* ========== Profile Pills ========== */
.custom-profile-bar .profile-pill {
    background: transparent;
    border: none;
    border-radius: 0;
    position: relative;
    color: var(--black);
    font-weight: 400;
    margin-right: 1rem;
    padding: 0.5rem 1rem;
    cursor: pointer;
    transition: font-weight 0.2s;
}

.custom-profile-bar .profile-pill.active {
    background: var(--white);
    font-weight: 600;
}

.custom-profile-bar .profile-pill.active::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background: var(--primary-yellow);
}

/* ========== Buttons ========== */
.btn.primary-pill {
    border-radius: 50px;
    background: var(--white);
    border: 1px solid var(--black);
    color: var(--black);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
}

.btn.primary-pill:hover {
    background: #f8f9fa;
}

.active-btn {
    background-color: var(--primary-yellow) !important;
    border-color: var(--primary-yellow) !important;
    color: var(--black) !important;
}

/* ========== Cards & Tables ========== */
.custom-card-border {
    border: 1px solid var(--black);
}

.custom-table {
    border-collapse: collapse;
    width: 100%;
}

.custom-thead {
    background-color: var(--black);
    color: var(--white);
}

.custom-th {
    width: 50%;
    padding: 10px;
    text-transform: uppercase;
}

.custom-tr-border {
    border-bottom: 1px solid var(--black);
}

.custom-td {
    vertical-align: top;
    padding: 10px;
}

/* ========== Utilities ========== */
.custom-scroll {
    max-height: 150px;
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* ========== Base Styles ========== */
body {
    background: var(--white);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Add to your CSS */
.custom-pills .nav-link {
    border: 1px solid var(--black);
    border-radius: 50px;
    background: var(--white);
    color: var(--black);
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.8rem;
    margin-right: 0.5rem;
    text-decoration: none;
    transition: all 0.2s;
}

.custom-pills .nav-link.active {
    background: var(--primary-yellow);
    border-color: var(--black);
    font-weight: 600;
}

.custom-pills .nav-link:hover {
    background: #f8f9fa;
}

a {
    color: var(--black);
    text-decoration: none;
}

a:hover {
    color: var(--black);
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: var(--primary-yellow);
    border-color: var(--primary-yellow);
}
/* Devise-specific styles */

.devise-left {
  background-color: #ffe500 !important;
}

.devise-right {
  background-color: #000000 !important;
} 
@import url("https://fonts.googleapis.com/css?family=Roboto:regular,500,600,700,800,900&display=swap");
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: inherit;
  font-size: inherit;
}

a {
  text-decoration: none;
  color: inherit;
}

html {
  font-family: "Roboto", sans-serif;
}

:root {
  --color-yellow: #ffe500;
  --color-blue: #07cbf5;
  --color-blue-light: #60e2ff;
}

body {
  background-color: black;
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrapper main {
  flex: 1 1 auto;
}

.page {
  position: relative;
}

.page::before {
  content: "";
  position: absolute;
  bottom: 0;
  top: 0;
  left: 0;
  width: 50%;
  background-color: var(--color-yellow);
}
@media (max-width: 992px) {
  .page::before {
    display: none;
  }
}

.container {
  max-width: 1230px;
  padding: 110px 15px 50px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width: 992px) {
  .container {
    padding: 0;
  }
}

.content-wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: flex-end;
  width: 100%;
}
@media (max-width: 992px) {
  .content-wrapper {
    display: block;
    padding: 0;
  }
}

.left {
  padding: 0 50px 0 0;
}
@media (max-width: 992px) {
  .left {
    background-color: var(--color-yellow);
    padding: 50px 15px;
  }
}
@media (max-width: 992px) {
  .left--black-bg {
    background-color: #000;
  }
}
@media (min-width: 992px) {
  .left__content {
    max-width: 530px;
    margin-right: auto;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .left--black-bg .left__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
}

.logo {
  display: inline-block;
  transition: transform 0.3s;
}
.logo:hover {
  transform: rotate(-3deg);
}
.logo__img {
  max-width: 247px;
  margin-bottom: 95px;
}
@media (max-width: 992px) {
  .logo__img {
    max-width: 200px;
  }
}

.title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 40px;
  line-height: 1.5;
}
@media (max-width: 992px) {
  .title {
    font-size: 20px;
  }
}

.partners__label {
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  .partners__label {
    font-size: 16px;
  }
}
.partners__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
@media (max-width: 992px) {
  .partners__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.partners__item {
  list-style: none;
  font-size: 14px;
  font-weight: 500;
}
.partners__link {
  height: 58px;
  border: 1px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: white;
  border-radius: 8px;
  transition: transform 0.3s;
}
.partners__link:hover {
  transform: translateY(-5px);
}
.partners__link--no-hover:hover {
  transform: translateY(0);
}
.partners__img {
  max-width: 80px;
}

.right {
  color: white;
  padding: 0 50px;
}
@media (max-width: 992px) {
  .right {
    padding: 50px 15px;
  }
}
@media (min-width: 992px) {
  .right__content {
    max-width: 400px;
    margin-left: auto;
    width: 100%;
  }
}

.login-title {
  text-align: center;
  margin-bottom: 40px;
  font-weight: 500;
}

.form {
  margin-bottom: 24px;
}
.form__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}

.form-item__row {
  margin-bottom: 8px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.form-item__input {
  width: 100%;
  height: 50px;
  background-color: transparent;
  outline: none;
  border-radius: 8px;
  border: 1px solid white;
  padding: 0 20px;
  color: white;
}
.form-item__input::-moz-placeholder {
  color: white;
  opacity: 0.5;
  -moz-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.form-item__input::placeholder {
  color: white;
  opacity: 0.5;
  transition: opacity 0.3s;
}
.form-item__input:focus {
  border-color: var(--color-yellow);
}
.form-item__input:focus::-moz-placeholder {
  opacity: 0;
}
.form-item__input:focus::placeholder {
  opacity: 0;
}

.link {
  text-decoration: none;
  color: var(--color-blue);
  font-weight: 500;
  line-height: 1.5;
}
.link:hover {
  text-decoration: underline;
}

.button {
  border-radius: 30px;
  background-color: var(--color-blue);
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  color: black;
  font-weight: 700;
  gap: 8px;
  cursor: pointer;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  border: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  text-decoration: none;
}
.button:hover {
  background-color: var(--color-blue-light);
}
.button--outlined {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}
.button--outlined:hover {
  background-color: transparent;
  box-shadow: white 0 0 10px;
}
.button--yellow {
  background-color: var(--color-yellow);
}
.button--yellow:hover {
  background-color: #dcc600;
}
.button--bordered {
  border: 1px solid #000;
}

.row {
  margin-bottom: 24px;
  font-weight: 500;
  display: flex;
  gap: 9px;
  align-items: center;
}

.divider {
  align-items: center;
  gap: 27px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  margin-bottom: 24px;
}
.divider__text {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.5;
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  background-color: white;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}
@media (max-width: 992px) {
  .page-bg {
    display: none;
  }
}
.page-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-bg--left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 31.21%, rgba(0, 0, 0, 0) 92.58%);
}
.page-bg--right {
  left: auto;
  right: 0;
}
.page-bg--right::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(336deg, rgba(255, 229, 0, 0.05) 18.25%, rgba(0, 0, 0, 0.05) 52.5%);
}

.white {
  color: #fff;
}

@media (min-width: 992px) {
  .header {
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
  }
}
@media (max-width: 600px) {
  .header .logo__img {
    display: none;
  }
  .header ._show-always .logo__img {
    display: inline-block;
  }
}
.header .logo__img {
  margin-bottom: 0;
  max-width: 209px;
}
.header__container {
  max-width: 1230px;
  padding: 44px 15px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.header-right {
  display: flex;
  gap: 40px;
  align-items: center;
}
.header-right .button {
  padding: 10px 32px;
}

@media (any-hover: hover) {
  .header-link:hover {
    text-decoration: underline;
  }
}

.offer {
  margin-bottom: 126px;
}
.offer__buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 436px;
}

.sub-title {
  margin-bottom: 40px;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

.error-message {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
  padding: 0.25rem 0.5rem;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
  border-radius: 0.25rem;
}

.field.error {
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
