/* --- ფონტის ჩასმა --- */
@font-face {
  font-family: 'HelveticaNeueLTGEO';
  src: url('../fonts/HelveticaNeueLTGEO-55Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'HelveticaNeueLTGEO';
  src: url('../fonts/HelveticaNeueLTGEO-75Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* --- ბექგრაუნდის სტილი (ss.ge-ს სტილში) --- */
body {
  min-height: 100vh;
  margin: 0;
  font-family: 'HelveticaNeueLTGEO', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image:
    linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
    url('img/dental-bg.jpg'); /* აქ ჩასვი შენი კლინიკის სურათი */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

/* --- ავტორიზაციის ფორმის კონტეინერი --- */
.login-container {
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.16);
  padding: 39px;
  border-radius: 10px;
  width: 468px;
  min-height: 468px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* --- სათაური --- */
.login-form h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-weight: 700;
  font-size: 2rem;
}

/* --- ფორმა --- */
.login-form form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* --- ლოგინის ინფუთი --- */
.login-form input[type="text"] {
  width: 100%;
  padding: 12px 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 15px;
  font-family: inherit;
}

/* --- პაროლის ინფუთი თვალის ღილაკით --- */
.password-wrapper {
  position: relative;
  width: 100%;
}
.password-wrapper input[type="password"] {
  width: 100%;
  padding: 12px 44px 12px 10px; /* მარჯვენა მხარეს ადგილი */
  border: 1px solid #ddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 15px;
  font-family: inherit;
}
.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 26px;
  height: 26px;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s;
  user-select: none;
}
.toggle-password:hover {
  opacity: 1;
}

/* --- ღილაკი --- */
.login-form button {
  width: 100%;
  padding: 14px;
  background-color: #0057e7;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 5px;
  font-family: inherit;
}
.login-form button:hover {
  background-color: #0046c0;
}

/* --- ბმულები --- */
.additional-links {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  margin-top: 18px;
}
.additional-links a {
  color: #0057e7;
  text-decoration: none;
}
.additional-links a:hover {
  text-decoration: underline;
}

/* --- რესპონსივობა მობილურისთვის --- */
@media (max-width: 600px) {
  .login-container {
    width: 95vw;
    min-width: 0;
    padding: 20px 8px;
  }
}
/* ... დანარჩენი სტილები ... */

body {
  min-height: 100vh;
  margin: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.7), rgba(255,255,255,0.7)),
    url('../img/dental-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: 'HelveticaNeueLTGEO', sans-serif;
}


.login-outer {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.auth-logo-center {
  display: block;
  margin: 0 auto 28px auto;
  max-width: 140px;
  height: auto;
}

.login-container {
  background-color: rgba(255,255,255,0.95);
  box-shadow: 0 2px 10px rgba(0,0,0,0.16);
  padding: 39px;
  border-radius: 10px;
  width: 468px;
  min-height: 468px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}

/* ...დანარჩენი სტილები, რაც აქამდე იყენებდი, რჩება უცვლელად... */




