/* style.css */
body {
  margin: 0;
  padding: 0;
  font-family: Arial;
  background: url('assets/bg.jpg') no-repeat center center fixed;
  background-size: cover;
}

.login-container {
  width: 350px;
  margin: 100px auto;
  padding: 20px;
  background: rgba(255,255,255,0.9);
  border-radius: 10px;
}

.login-tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.tab {
  flex: 1;
  padding: 10px;
  cursor: pointer;
  background: #f0f0f0;
  border: none;
}

.tab.active {
  background: #007bff;
  color: white;
}

.input-wrapper {
  position: relative;
  margin-bottom: 15px;
}

.input-wrapper input {
  width: 100%;
  padding: 10px;
  padding-left: 30px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.icon {
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
}

.checkbox {
  margin: 10px 0;
  display: block;
}

.submit-btn {
  width: 100%;
  padding: 10px;
  background: linear-gradient(to right, #e60023, #ff1493);
  color: white;
  border: none;
  border-radius: 5px;
  font-weight: bold;
}
