/* Page/base */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  background-color: #4a5759;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
}

/* Layout */
.container {
  display: flex;
  height: 100vh;
}

.left {
   flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;   /* centers vertically */
  align-items: center;       /* centers horizontally */
  background-color: #b10f1e;
  position: relative;
  padding: 24px;
}

.content {
  width: 100%;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;   /* ensures children stay centered */
  align-items: center;
  margin: 0;               /* leave room above footer icons */
}

.right {
  flex: 1;
  overflow: hidden;
}
.right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Boxes */
.form-box{
  width: auto;
  background: #adb5bd;
  padding: 5rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  border-radius: 50px;
  text-align: center;
  justify-content: center;
}

.sub-box {
  width: auto;
  padding: 1.5rem;
  box-shadow: 0 4px 5px rgba(0,0,0,0.2);
  border-radius: 5px;
  text-align: center;
}

.form-box h2 {
  margin: 0 0 12px 0;
  text-align: center;
}

.form-box input {
  width: auto;
  margin-bottom: 0.75rem;
  padding: 0.6rem 0.7rem;
  border: 1px solid #8b949e;
  border-radius: 8px;
  outline: none;
}

/* Submit button box */
.sub-box .button_class {
  display: inline-block;
  width: 50%;
  text-align: center;
  padding: 0.7rem 0.5rem;
  border-radius: 3px;
  background: #e9ecef;
  color: #111;
  font-weight: 500;
  font-size: larger;
  /*border: 1px solid #adb5bd;*/
  transition: transform 0.05s ease, box-shadow 0.2s ease;
}
.sub-box .button_class:hover {
  box-shadow: 0 2px 2px rgba(0,0,0,0.25);
}
.sub-box .button_class:active {
  transform: translateY(1px);
}

/* Footer icons */
.icons {
  width: 100%;
  display: flex;
  justify-content: center;
  position: absolute;   /* keep at bottom */
  left: 0;
  bottom: 16px;
}
.favIcon {
  color: #f1f3f5;       /* visible on dark background */
  display: flex;
  gap: 16px;
  font-size: 22px;
}

/* Optional link style reset */
a {
  text-decoration: none;
}

/* Optional small heading style */
h1 {
  font-weight: 200;
  font-size: small;
}
