/* General Page Style */
body {
  font-family: 'Arial', sans-serif;
  background: #f2f2f2;
  margin: 0;
}

/* Container */
.reg-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Card */
.reg-card {
  background: white;
  width: 425px;
  padding: 30px;
  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;
  margin-left:5px;
}

.input-group input {
  width: 90%;
  padding: 12px 14px;
  border: 1px solid #d9d9d9;
  border-radius: 10px;
  outline: none;
  font-size: 14px;
  margin-left:7px;
}

/* 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;
}
form #up{
text-align:center;
color:green;
text-decoration:none;
padding-bottom:-12%;
}

.error-msg{
  margin-top: 12px;
  padding: 10px;
  background: #ffe5e5;
  color: #b30000;
  border-left: 4px solid #ff0000;
  border-radius: 6px;
  font-size: 14px;
}
