* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url('/assets/img/bg.png') no-repeat center center/cover;
  min-height: 100vh;
}

/* Center everything */
.main-container {
  text-align: center;
  padding-top: 120px;
}

/* Title */
.page-title {
  font-size: 32px;
  font-weight: 500;
  color: #000;
  margin-bottom: 40px;
}

/* Card */
.login-card {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 10px 25px rgba(55, 55, 55, 0.178);
  border: solid 1px #0000003e;
  width: 100%;
  max-width: 400px;
  margin: auto;
}

.login-logo img {
  width: 100%;
  margin-bottom: 20px;
  padding: 0%;
}

/* Input group */
.input-group {
  text-align: left;
  margin-bottom: 15px;
}

.input-group label {
  font-size: 14px;
  display: block;
  margin-bottom: 5px;
}

/* Input box with icon */
.input-box {
  position: relative;
}

.input-box input {
  width: 100%;
  padding: 10px 40px 10px 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
  outline: none;
}

/* Icon inside input */
.input-box i {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #888;
}

/* Button */
.login-btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  background: linear-gradient(to right, #f27059, #ff9472);
  color: white;
  font-size: 16px;
  margin-top: 15px;
  cursor: pointer;
}

/* Links */
.link {
  font-size: 14px;
  margin-top: 10px;
  color: #333;
}

.link span {
  color: #ff6f61;
  cursor: pointer;
}

.top-logo {
  position: absolute;
  top: 0px;
  left: 0px;
}

.top-logo img {
  width: 120px;
  height: auto;
}

/* Responsive spacing for mobile devices */
@media (max-width: 480px) {
  .main-container {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 60px;
  }

  .page-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .login-card {
    padding: 50px 20px;
    margin-top: 50px;
  }

  .top-logo img {
    width: 90px;
  }
}