/* 1. LOGIN PAGE START */

body {
  background: #fcf7f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.login-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.login-box {
  background: #fff;
  width: 430px;
  padding: 45px 40px 55px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #eee;
}

.brand {
  color: #E36414;
  font-size: 32px;
  margin-bottom: 8px;
}

h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  color: #666;
  margin-bottom: 25px;
}

label {
  display: block;
  text-align: left;
  margin: 12px 0 6px;
  font-size: 15px;
  font-weight: 500;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  margin-bottom: 5px;
  font-size: 15px;
}

.field-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.forgot {
  color: #E36414;
  text-decoration: none;
  font-size: 14px;
}

.signin-btn {
  width: 100%;
  background: #E36414;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-size: 17px;
  border: none;
  cursor: pointer;
  margin-top: 15px;
}

.signup-text {
  margin-top: 25px;
  font-size: 15px;
}

.signup-text a {
  color: #E36414;
  text-decoration: none;
  font-weight: 600;
}

/* 1. LOGIN PAGE END */

/* SIGNUP PAGE START */

body {
  background: #fcf7f2;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
}

.signup-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.signup-box {
  background: #fff;
  width: 450px;
  padding: 50px 45px 55px;
  border-radius: 14px;
  text-align: center;
  border: 1px solid #eee;
}

.brand {
  color: #E36414;
  font-size: 32px;
  margin-bottom: 8px;
}

h2 {
  font-size: 28px;
  margin-bottom: 5px;
}

.subtitle {
  color: #666;
  margin-bottom: 28px;
}

label {
  display: block;
  text-align: left;
  margin: 14px 0 6px;
  font-size: 15px;
  font-weight: 500;
}

input {
  width: 100%;
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 15px;
}

.signup-btn {
  width: 100%;
  background: #E36414;
  color: #fff;
  padding: 12px;
  border-radius: 6px;
  font-size: 17px;
  border: none;
  cursor: pointer;
  margin-top: 22px;
}

.signin-text {
  margin-top: 28px;
  font-size: 15px;
}

.signin-text a {
  color: #E36414;
  text-decoration: none;
  font-weight: 600;
}

/* SIGNUP PAGE END */
