/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Body Styling */
body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #000;
  background: url(images/login.jpg) center center / cover no-repeat;
}

/* Container */
.container {
  background: rgba(0, 0, 0, 0.6);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 10px #000;
  width: 100%;
  max-width: 400px;
}

/* Heading */
.container h1 {
  text-align: center;
  text-transform: uppercase;
  border-bottom: 4px solid #623e2a;
  font-size: 32px;
  color: #fff;
  margin-bottom: 30px;
}

/* Form Group */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
}

.form-group input[type="text"],
.form-group input[type="password"] {
  width: 100%;
  padding: 12px 15px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border 0.3s ease;
}

.form-group input[type="text"]:focus,
.form-group input[type="password"]:focus {
  border-color: #623e2a;
}

/* Checkbox */
.form-group.checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 14px;
}

/* Submit Button */
button[type="submit"],
input[type="submit"] {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  color: #fff;
  background: #623e2a;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s ease;
}

button[type="submit"]:hover,
input[type="submit"]:hover {
  background: #915f46;
}

/* Forgot Password */
.text {
  text-align: right;
  margin-bottom: 20px;
}

.text a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.text a:hover {
  color: #ffd700;
}

/* Divider */
hr {
  border: 1px solid rgba(255, 255, 255, 0.6);
  margin: 20px 0;
}

/* Sign Up */
.sign-up {
  color: #fff;
  text-align: center;
  font-size: 14px;
}

.sign-up a {
  color: #ffd700;
  text-decoration: none;
  font-weight: bold;
}

.sign-up a:hover {
  text-decoration: underline;
}

/* Button Styling */
.card-content .btn {
  display: inline-block;
  padding: 8px 16px;
  background-color: #623e2a;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  margin-top: 16px;
  transition: background-color 0.3s ease;
}

.card-content .btn:hover {
  background-color: #8a5a3b;
}
/*Back Button*/
.back-to {
  width: 100%;
  padding: 40px 20px;
  background-color: #efebe5;
  text-align: center;
}
.back-to p {
  font-size: 16px;
  margin: 10px 0;
}
.back-to a {
  color: #1f5909;
  text-decoration: none;
  font-weight: bold;
}

.back-to a:hover {
  text-decoration: underline;
}