/* Omoda Login CSS */
:root {
  --omoda-black: #000000;
  --omoda-white: #FFFFFF;
  --omoda-button-blue: #314A61;
  --omoda-font: 'Space Grotesk', sans-serif;
}

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

body {
  font-family: var(--omoda-font);
  color: var(--omoda-white);
  background-color: var(--omoda-black);
  overflow-x: hidden;
}

.omoda-login-container {
  display: flex;
  flex-direction: column;
  min-height: 600px;
}

.omoda-login-container .omoda-content-container {
      padding-top: 100px;
}

/* Header */
.omoda-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background-color: var(--omoda-black);
  height: 60px;
}

.omoda-logo {
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--omoda-white);
}

.omoda-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.omoda-nav-link {
  color: var(--omoda-white);
  text-decoration: none;
  font-size: 16px;
}

.omoda-user-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Main Content */
.omoda-main {
  flex: 1;
  background-color: var(--omoda-black);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

.omoda-content-container {
  display: flex;
  flex-direction: row;
  max-width: 1440px;
  width: 100%;
  min-height: 360px;
  justify-content: center;
}

.omoda-left-column {
  flex: 0 0 473px;
  width: 473px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.omoda-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.omoda-right-column {
  flex: 0 0 600px;
  max-width: 600px;
  padding: 0 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.omoda-welcome-text {
  margin-bottom: 35px;
  text-align: left;
  width: 100%;
}

.login-link {
  color: white;
  font-size: 14px;
  text-decoration: underline;
}

.omoda-welcome-text h1 {
  font-size: 24px;
  font-weight: 300;
  line-height: 120%;
  max-width: 100%;
}

.omoda-login-form {
  width: 100%;
}

.omoda-login-form h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 1rem;
  margin-top: 0;
}

.omoda-form-group {
  margin-bottom: 1rem;
  width: 100%;
}

.omoda-input {
  width: 100%;
  height: 42px;
  background-color: var(--omoda-white);
  border: none;
  box-shadow: inset 0px -1px 0px rgba(0, 0, 0, 0.5);
  font-family: var(--omoda-font);
  font-size: 16px;
  padding: 0 1rem;
  color: var(--omoda-black);
}

.omoda-input::placeholder {
  color: var(--omoda-black);
}

.omoda-password-reset {
  margin-bottom: 1rem;
  width: 100%;
  text-align: left;
}

.omoda-password-reset a {
  font-size: 14px;
  color: var(--omoda-white);
  text-decoration: underline;
  font-weight: 400;
}

.omoda-checkboxes {
  margin-bottom: 1.5rem;
  width: 100%;
}

.omoda-checkbox-group {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.omoda-checkbox {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  border: 1px solid var(--omoda-white);
  appearance: none;
  position: relative;
  background-color: transparent;
  cursor: pointer;
}

.omoda-checkbox:checked::after {
  content: '';
  position: absolute;
  left: 4px;
  top: 1px;
  width: 5px;
  height: 10px;
  border: solid var(--omoda-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.omoda-checkbox-group label {
  font-size: 11px;
  line-height: 140%;
}

.omoda-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #314A61;
  border: none;
  height: 42px;
  width: 180px;
  padding: 0 1.5rem;
  color: var(--omoda-white);
  font-family: var(--omoda-font);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
}

.omoda-button-arrow {
  margin-left: 10px;
}

.omoda-button::before,
.omoda-button::after {
  display: none;
}

.omoda-error-message {
  margin-top: 1rem;
  color: #ff3e3e;
  font-size: 14px;
}

.omoda-footer {
  background-color: #040404;
  height: 180px;
  padding: 1.5rem 2rem;
  position: relative;
}

.omoda-footer-content {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "logo contact"
    "policy social";
  height: 100%;
}

.omoda-footer-logo {
  grid-area: logo;
  display: flex;
  align-items: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.omoda-contact-links {
  grid-area: contact;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.omoda-policy-links {
  grid-area: policy;
  display: flex;
  gap: 2rem;
  align-items: flex-end;
}

.omoda-social-links {
  grid-area: social;
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  align-items: flex-end;
}

.omoda-contact-links a,
.omoda-policy-links a {
  color: var(--omoda-white);
  text-decoration: none;
  font-size: 16px;
  line-height: 140%;
}

.omoda-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 30px;
  height: 30px;
  background-color: transparent;
  color: var(--omoda-white);
  font-size: 18px;
}

.omoda-social-icon i {
  color: var(--omoda-white);
}

@media (max-width: 1200px) {
  .omoda-content-container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .omoda-left-column {
    flex: 0 0 40%;
    width: 40%;
  }
  
  .omoda-right-column {
    flex: 0 0 60%;
    max-width: 60%;
  }
}

@media (max-width: 1024px) {
  .omoda-content-container {
    flex-direction: column;
    height: auto;
    padding: 2rem 1rem;
  }
  
  .omoda-left-column,
  .omoda-right-column {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }
  
  .omoda-left-column {
    height: 40vh;
    max-height: 400px;
  }
  
  .omoda-bg-image {
    height: 100%;
    object-fit: cover;
  }
  
  .omoda-right-column {
    padding: 2rem 1rem;
  }
}

@media (max-width: 768px) {

  .omoda-content-container {
    height: auto;
    min-height: auto;
    padding: 1rem;
  }
  
  .omoda-header,
  .omoda-footer {
    padding: 1rem;
  }
  
  .omoda-welcome-text h1 {
    font-size: 20px;
  }
  
  .omoda-login-form {
    margin-bottom: 2rem;
  }
  
  .omoda-footer-content {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    grid-template-areas:
      "logo"
      "contact"
      "policy"
      "social";
    gap: 1.5rem;
  }
  
  .omoda-footer-logo {
    justify-content: center;
  }
  
  .omoda-contact-links {
    align-items: center;
  }
  
  .omoda-policy-links {
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .omoda-social-links {
    justify-content: center;
  }
  
  .omoda-left-column {
    height: 30vh;
  }
}

@media (max-width: 480px) {
  .omoda-nav-link {
    font-size: 14px;
  }
  
  .omoda-welcome-text h1 {
    font-size: 18px;
  }
  
  .omoda-left-column {
    height: 25vh;
  }
  
  .omoda-policy-links {
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
  }
} 

.form--field.is-checkbox {
  padding: 50px 0 40px;
}
