:root {
  --theme-color: #0064f3;
  --font-color: #333333;
  --font-white: #ffffff;
  --bg-color: #f0f0f0;
  --shadow-color: #cacaca;
  --text-muted: #555555;
  --border-color: #f5f5f5;
}

.bg-primary {
  background-color: var(--theme-color);
}

.bg-background {
  background-color: var(--bg-color);
}

.text-primary {
  color: var(--theme-color);
}

.border-primary {
  border-color: var(--theme-color);
}

.box-shadow {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 3px 0px,
    rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

.form-input {
  width: 100%;
  padding: 7px 12px;
  border: 1px solid var(--border-color);
  border-radius: 4px;
  background-color: #fafafa;
  font-size: 14px;
}

.form-input:focus,
.otp-input:focus {
  outline: none;
  border-color: #a8a8a8;
}

label {
  font-size: 14px;
}

.otp-input {
  width: 71px;
  height: 71px;
  border-radius: 20px;
  border-width: 1.6px;
  font-size: 24px;
  color: var(--text-muted);
  text-align: center;
  font-weight: bold;
}

.auth-button,
.theme-button {
  background-color: var(--theme-color);
  color: var(--font-white);
  width: 100%;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 15px;
  transition: background-color 0.2s;
}
.auth-button:hover {
  background-color: var(--theme-color);
}
.auth-button:disabled {
  background-color: #b2dffc;
  cursor: not-allowed;
}

.container-custom {
  max-width: 1280px;
}

.loader {
  width: 23px;
  height: 23px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  padding: 6px 0 !important;
}

.dark-loader {
  width: 23px;
  height: 23px;
  border: 3px solid #444;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
  padding: 6px 0 !important;
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.upload-container {
  height: calc(100vh - 105px);
  width: 100%;
  max-width: calc(100vw - var(--sidebar-width));
}

@media (max-width: 1920px) {
  .ellipse-1 {
    height: 530px;
    width: 620px;
  }
  .ellipse-2 {
    height: 510px;
    width: 620px;
  }
  .login-dog-image {
    height: 400px;
  }
  .otp-dog-image {
    height: 450px;
  }
  .otp-section {
    margin: 0 auto;
    width: 620px;
  }
  .container-custom {
    max-width: 1600px;
  }
}

@media (max-width: 1366px) {
  .ellipse-1 {
    height: 372px;
    width: 420px;
  }
  .ellipse-2 {
    height: 350px;
    width: 425px;
  }
  .login-dog-image {
    height: 270px;
  }
  .otp-section {
    margin: 0 10px;
    width: 600px;
  }
  .otp-dog-image {
    height: 290px;
  }
}
