.login-card {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(
    4px
  );
  padding: 2.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.welcome-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2rem;
  text-align: center;
}

.welcome-logo img {
  width: 100px;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.welcome-logo h1 {
  color: var(--app-primary-color);
  font-weight: bold;
}

.title {
  font-weight: 600;
  color: #333;
  margin-bottom: 1.5rem;
  text-align: center;
}

.input-form label {
  display: block;
  position: relative;
  margin-bottom: 2rem;
}

.input-form input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 2px solid #ddd;
  outline: none;
  font-size: 16px;
  background: transparent;
  transition: border-color 0.3s;
}

.input-form input:focus {
  border-bottom: 2px solid var(--app-primary-color);
}

.input-form span {
  position: absolute;
  top: 10px;
  left: 0;
  transition: all 0.3s;
  pointer-events: none;
  color: #6c757d;
}

.input-form input:focus + span,
.input-form input:not(:placeholder-shown) + span {
  top: -15px;
  font-size: 12px;
  color: var(--app-primary-color);
}

.btn-primary {
  background-color: var(--app-primary-color);
  border-color: var(--app-primary-color);
  font-weight: bold;
  padding: 0.75rem;
  transition: background-color 0.3s;
}

.btn-primary:hover {
  background-color: var(--app-button-hover-color);
  border-color: var(--app-button-hover-color);
}