/* Reset */
@import url("https://cdnjs.cloudflare.com/ajax/libs/meyer-reset/2.0/reset.min.css");
* {
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "PT Sans", sans-serif;
}

body {
  font-family: "PT Sans", sans-serif;
  background-color: #f5f5f5;
  margin-top: -1.00px;
  font-family: var(--body-medium-medium-font-family);
  font-weight: var(--body-medium-medium-font-weight);
  font-size: var(--body-medium-medium-font-size);
  letter-spacing: var(--body-medium-medium-letter-spacing);
  line-height: var(--body-medium-medium-line-height);
  white-space: nowrap;
  font-style: var(--body-medium-medium-font-style);
}

a {
    text-decoration: none;
    color: inherit;
}
/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #ffffff;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10;
}

.logo img {
  position: relative;
  width: 100px;
  height: 41.6px;
  object-fit: cover;
}

.nav-buttons {
  display: flex;
  gap: 10px;
}

.nav-button {
  padding: 10px 20px;
  cursor: pointer;
  background-color: #FFFFFF;
  font-family: "PT Sans", sans-serif;
  font-weight: 700;
  color: #234193;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 16.8px;
  white-space: nowrap;
  border: 1px solid;
  border-color: #234193;
}
.nav-button.signup {
  background-color: #234193;
  color: #ffffff;
  border-style: none;
}

/* Main Container */
.main-container {
  display: flex;
  width: 100%;
  height: 100vh;
  max-width: 100vw;
  margin-top: 60px; /* To avoid overlap with navbar */
}

/* Left Section */
.left-section {
  width: 50%;
  position: relative;
}

.background-image {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

/* Right Section */
.right-section {
  width: 50%;
  background-color: #fff;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.login-form {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding; 20px;

}

.form-group {
  margin-bottom: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

label span {
  color: red;
}

input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.btn {
  color: #ffffff;
  width: 100%;
  padding: 10px;
  cursor: pointer;
  margin-top: 10px;

  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  background-color: #1754a4;
  border-style: none;
}

.btn:hover {
  background-color: #0056b3;
}

.create-account {
  margin-top: 20px;
  text-align: center;
  font-size: 14px;
  color: #555;
}

.create-account a {
  color: #003882;
  text-decoration: none;
}

.create-account a:hover {
  text-decoration: underline;
}

:root {
  --www-udemy-com-semantic-link-font-family: "PT Sans, Helvetica;
  --www-udemy-com-semantic-link-font-weight: 700;
  --www-udemy-com-semantic-link-font-size: 14px;
  --www-udemy-com-semantic-link-letter-spacing: 0px;
  --www-udemy-com-semantic-link-line-height: 16.799999237060547px;
  --www-udemy-com-semantic-link-font-style: normal;
  --body-medium-medium-font-family: "PT Sans", Helvetica;
  --body-medium-medium-font-weight: 500;
  --body-medium-medium-font-size: 14px;
  --body-medium-medium-letter-spacing: 0px;
  --body-medium-medium-line-height: 160.0000023841858%;
  --body-medium-medium-font-style: normal;
  --www-udemy-com-width-80: 80px;
  --www-udemy-com-color-white-solid: rgba(255, 255, 255, 1);
}



.conditional {
    display: none;
}

.text-wrapper-2 {
  width: fit-content;
  margin-top: -1.00px;
  font-family: "Inter-Medium", Helvetica;
  font-weight: 500;
  color: #111827;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22.4px;
  white-space: nowrap;
}

.input-area {
  align-self: stretch;
  width: 100%;
  border: 1px solid;
  border-color: #e8eaeb;
}

@media (max-width: 768px) {
  .left-section {
    display: none;
  }

  .right-section {
    width: 100%;
  }
}

.loading-spinner {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid #ccc;
    border-top: 2px solid black;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

