@import url("colors.css");
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  background-color: var(--silver-color);
  display: flex;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  padding: 1rem;
}

.auth-card {
  width: 100%;
  max-width: 580px;
  border-radius: 16px;
  border: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  padding: 2rem !important;
  background-color: #ffffff;
}

.company-logo {
  height: 56px;
  width: 56px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.company-logo:hover {
  transform: scale(1.05);
}

.announcement-bar,
footer,
.navbar {
  display: none !important;
}

.brand-title {
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--dark);
}

.form-control {
  padding: 0.8rem 1rem;
  border-radius: 8px;
  font-size: 0.95rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--dark);
  box-shadow: 0 0 0 0.15rem rgba(0, 0, 0, 0.08);
}

.form-label {
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.btn-login {
  background-color: var(--dark) !important;
  color: var(--white) !important;
  border: none !important;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
  height: 48px;
}

.btn-login:hover {
  background-color: var(--silver) !important;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Password Toggle Styles */
.password-container .input-group {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}

.password-container .form-control {
  padding-right: 50px;
  border-right: 0;
}

.password-container .toggle-password {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 5;
  border: none;
  background: transparent;
  color: #6c757d;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.password-container .toggle-password:hover {
  color: var(--dark);
  background-color: rgba(0, 0, 0, 0.03);
}

.password-container .toggle-password i {
  width: 20px;
  text-align: center;
  font-size: 1.1rem;
}

/* Google Button */
.btn-outline-danger {
  border: 1.5px solid #db4437;
  color: #db4437;
  border-radius: 8px;
  font-weight: 500;
  padding: 0.8rem;
  transition: all 0.3s ease;
  height: 48px;
}

.btn-outline-danger:hover {
  background-color: #db4437;
  color: white;
  box-shadow: 0 5px 15px rgba(219, 68, 55, 0.15);
  transform: translateY(-2px);
}

/* Modern Additional Styles */
.welcome-text {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.divider-text {
  font-weight: 500;
  color: #6c757d;
}

.form-check-input:checked {
  background-color: var(--dark);
  border-color: var(--dark);
}

.form-check-label {
  color: #6c757d;
  font-weight: 500;
}

.text-decoration-none {
  font-weight: 500;
  color: var(--dark);
  transition: all 0.2s ease;
}

.text-decoration-none:hover {
  color: var(--silver);
  text-decoration: underline !important;
}

.brand-navigation {
  margin-bottom: 2rem !important;
}

.nav-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.03);
}

.nav-icon:hover {
  background-color: rgba(0, 0, 0, 0.07);
}
