    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Segoe UI', system-ui, sans-serif;
    }
    body {
        min-height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: linear-gradient(to right, #f0f4ff, #f8faff);
        padding: 20px;
        position: relative;
    }
    /* Honeypot field styling */
    .hp-container {
        position: absolute;
        left: -9999px;
        top: -9999px;
        opacity: 0;
        height: 0;
        width: 0;
        overflow: hidden;
    }
    #formLoadTime {
        display: none;
    }
    .container {
        display: flex;
        background: white;
        border-radius: 16px;
        box-shadow: 0 10px 15px rgba(0, 0, 255, 0.2);
        width: 100%;
        max-width: 1320px;
    }
    @media(min-width:600px)
    {
        .container{
         padding-top: 30px;
         padding-bottom: 30px;
     }
 }
 b {
    color: navy !important;
}
.container img {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin-bottom: 0px;
}
.left-side {
    flex: 1;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: white;
    border-radius: 16px 0 0 16px;
}
.left-side img {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-bottom: 0px;
    border:none;
    outline: none; 
    box-shadow: none; 
}
.right-side {
    flex: 1;
    padding: 40px;
}
.header {
    text-align: center;
    margin-bottom: 32px;
}
.header h1 {
    color: #2563eb;
    font-size: 28px;
    margin-bottom: 8px;
}
.header p {
    color: #64748b;
    font-size: 16px;
}
.form-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.form-row .form-group {
  width: 48%; 
  padding-right: 25px;
  color:navy;
}
label {
    display: block;
    color: navy;
    margin-bottom: 8px;
    font-weight: 500;
}
input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.2s, box-shadow 0.2s;
}
input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
button {
    width: 100%;
    padding: 12px;
    background-color: #2563eb;
    color: white;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    background: linear-gradient(to bottom, #4da3ff, #007bff);
    border: 1px solid #006fe6;
    border-radius: 8px;
    padding: 12px 24px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    transition: all 0.25s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}
button:hover {
    background: linear-gradient(to bottom, #3399ff, #0056b3);
    transform: translateY(-1px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}
button:active {
   transform: translateY(1px);
   box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.login-link {
    display: block;
    text-align: center;
    margin-top: 24px;
    color: #2563eb;
    text-decoration: none;
    font-size: 14px;
}
.login-link:hover {
    text-decoration: underline;
}
.message {
    margin-bottom: 20px;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    display: none;
}
.success-message {
    background-color: #dcfce7;
    color: #166534;
    border: 1px solid #166534;
}
.bunsho{
    color: red;
    font-size: 12px;
}
@media (max-width: 768px) {
    body {
        padding: 0;
    }
    .container {
        flex-direction: column;
        box-shadow: none;
        max-width: 100%;
    }
    .left-side {
        border-radius: 0;
        padding: 20px;
    }
    .form-row {
        flex-direction: column;
        margin: 0;
        width: 100%;
    }
    .form-row .form-group {
        width: 100%;
        margin-bottom: 15px;
        padding-right: 0px;
    }
    .header {
        margin-bottom: 0px;
    }
    .header h1 {
        font-size: 24px;
    }
    .header p {
        font-size: 14px;
    }
    label{
        font-size: 16px; 
        font-weight: 800; 
        color:navy;
    }
    input, button {
        font-size: 14px;
    }
    .message {
        margin: 0 auto 20px auto; 
        max-width: 100%; 
    }
    .success-message {
        font-size: 14px; 
        padding: 8px; 
        word-wrap: break-word; 
    }
}
}
.right-side #registrationForm b {
    color: navy !important;
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}
.field-error {
  display: none;
  margin-top: 8px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #b91c1c; 
  background-color: #fef2f2;
  border-left: 4px solid #ef4444;
  border-radius: 8px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  align-items: center;
  gap: 8px;
  animation: fadeIn 0.3s ease-in-out;
}
.field-error::before {
  content: "⚠️";
  font-size: 16px;
  line-height: 1;
}
.field-error.show {
  display: flex;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-2px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.footer {
    margin-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #666;
    width: 100%;
    padding: 10px 0;
}
@media (max-width: 768px) {
    .footer {
        margin-top: 10px;
        padding: 10px 20px;
    }
}