/* General Page Style */
body {
  font-family: 'Arial', sans-serif;
  background: #f2f2f2;
  margin: 0;
  display: flex;
  justify-content:center;
  align-items:center;
}

/* Container */
.reg-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Card */
.reg-card {
  background: white;
  width: 420px;
  padding:25px;
  border-radius: 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

/* Header */
.reg-header h2 {
  color: #0d2a5b;
  margin: 0;
  font-size: 28px;
  text-align:center;
}

.reg-header p {
  color: #555;
  margin-top: 8px;
  text-align:center;
}

/* Form */
.reg-form {
  margin-top: 20px;
}

.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: block;
  color: #555;
  font-size: 14px;
  margin-bottom: 6px;
}

.input-group input {
  width: 90%;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
}

/* Button */
.reg-btn {
  width: 100%;
  padding: 12px;
  background: #0d2a5b;
  color: white;
  border: none;
  border-radius: 30px;
  font-size: 16px;
  cursor: pointer;
  margin-top: 10px;
}

/* Login Text */
.login-text {
  text-align: center;
  margin-top: 14px;
  color: #555;
  display: flex;
  justify-content: center;
  align-items:center;
  flex-direction:column;
}

.login-text a {
  color: #ff7a00;
  text-decoration: none;
}


@media(max-width: 700px){
.reg-container {
  margin-top:35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

body {
  font-family: 'Arial', sans-serif;
  background: #f2f2f2;
  display: flex;
  justify-content:center;
  align-items:center;
}
}


.input-group {
  margin-bottom: 15px;
}

.input-group label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
}

.error-inline {
  background: #ffe5e5;
  color: #b30000;
  padding: 3px 8px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
}
