/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML & BODY FULL HEIGHT */
html, body {
  height: 100%;
}

/* BODY */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #ffffff;
  height: 100%;
  overflow-x: hidden; /* no horizontal scroll */
  display: flex;
  flex-direction: column;
}

/* =========================
   FIXED HEADER
========================= */


.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: space-between; /* left & right ends */
    padding: 0 40px;
    z-index: 1000;
}


.site-header img {
  max-height: 100px;
  width: auto;
  object-fit: contain;
}



/* =========================
   FIXED FOOTER
========================= */
.site-footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: #008080;
  border-top: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #ffffff;
  z-index: 1000;
}

/* =========================
   MAIN CONTENT AREA
========================= */
.container {
  flex: 1;
  margin-top: 90px;   /* same as header height */
  margin-bottom: 50px; /* same as footer height */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

/* =========================
   FORM CONTAINER
========================= */
.form-container {
  background-color: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 400px;
  width: 100%;
  animation: fadeIn 0.6s ease-in-out;
}

/* =========================
   FORM STYLES
========================= */
.form-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #008080;
  font-weight: bold;
}

.image-container {
  text-align: center;
  margin-bottom: 20px;
}

.image-container img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.form-label {
  font-weight: 600;
  margin-bottom: 5px;
  color: #008080;
}

.form-label::after {
  content: '*';
  color: red;
  margin-left: 4px;
}

.form-control {
  border-radius: 8px;
  box-shadow: none;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.form-control:focus {
  border-color: #667eea;
  box-shadow: 0 0 0 0.2rem rgba(102, 126, 234, 0.25);
}

.btn-primary {
  width: 100%;
  border-radius: 8px;
  padding: 10px;
  font-weight: bold;
  background-color: #008080;
  border-color: #667eea;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #5a67d8;
  border-color: #5a67d8;
}

.alert {
  margin-top: 10px;
  padding: 10px;
  font-size: 0.9rem;
  border-radius: 6px;
}

/* =========================
   LEFT IMAGE
========================= */
.login-image {
    width: 50%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.login-image img {
    max-width: 100%;
    height: auto;
}

/* =========================
   RIGHT FORM
========================= */
.login-form {
    width: 50%;
    padding: 60px 70px;
    background-color: #ffffff;
}

/* =========================
   FADE IN ANIMATION
========================= */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.radiant-text {
  font-size: 26px;
  font-weight: bold;
  text-align: right;

  background: linear-gradient(
    90deg,
    #ff4e50,
    #fc913a,
    #f9d423,
    #24c6dc,
    #514a9d
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
