body {
  background: #000000;
  font-family: "Times New Roman", Times, serif;
  color: #b6b6b6;
  text-align: center;
  margin: 0;
  padding-top: 50px;
}

a {
  color: #553311;
  text-decoration: none;
  font-weight: bold;
}
a:hover {
  color: #880000;
  text-decoration: underline;
}

h1,
h2,
h3 {
  font-weight: bold;
  margin: 0;
}

.login-container {
  width: 600px;
  margin: 0 auto;
  background-color: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stone-banner {
  display: flex;
  width: 500px;
  height: 380px;
  position: relative;
  margin: 0 auto;
}

.stone-half {
  width: 50%;
  height: 100%;
  background-image: url("stone-half.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.stone-half.left {
  background-position: top right;
}

.stone-half.right {
  background-position: top right;
  transform: scaleX(-1);
}

.stone-text {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  margin: auto;
  width: 250px;
  height: 175px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 10;
}

.server-name {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 30px;
  font-weight: bold;
  color: #444;
  text-shadow:
    1px 1px 1px rgba(255, 255, 255, 0.8),
    -1px -1px 1px rgba(0, 0, 0, 0.3);
  margin: 0;
}

.game-name {
  font-family: "Times New Roman", Georgia, serif;
  font-size: 34px;
  font-weight: bold;
  color: #333;
  line-height: 1.2;
  text-shadow:
    1px 1px 1px rgba(255, 255, 255, 0.8),
    -1px -1px 1px rgba(0, 0, 0, 0.3);
  transform: translateY(35px);
}

.stone-extension {
  width: 480px;
  box-sizing: border-box;
  margin: 0 auto;
  position: relative;
  top: -50px;
  z-index: 0;
  padding: 10px 0 20px 0;
  background:
    linear-gradient(to top, #222222 0px, #222222 1px, transparent 1px),
    linear-gradient(
      90deg,
      #222222 0px,
      #cbcbcb 1px,
      #cbcbcb calc(100% - 1px),
      #222222 100%
    );
}

.stone-bottom-banner {
  display: flex;
  width: 500px;
  height: 35px;
  margin: 0 auto;
  position: relative;
  top: -51px;
  z-index: 0;
}

.stone-bottom-half {
  width: 50%;
  height: 100%;
  background-image: url("stone-bottom.webp");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}

.stone-bottom-half.left {
  background-position: top right;
}

.stone-bottom-half.right {
  background-position: top right;
  transform: scaleX(-1);
}

.login-form {
  width: 100%;
  margin: 0 auto;
  padding-top: 50px;
}

.headline {
  color: #333;
  font-family: "Times New Roman", Georgia, serif;
  font-size: 20pt;
  font-weight: bold;
  display: block;
  margin-bottom: 15px;
  text-shadow:
    1px 1px 0 rgba(255, 255, 255, 0.6),
    -1px -1px 0 rgba(0, 0, 0, 0.1);
}

.login-table {
  width: auto;
  margin: 0 auto;
  font-size: 14pt;
  font-weight: bold;
  color: #444;
  font-family: "Times New Roman", Georgia, serif;
  text-shadow:
    1px 1px 1px rgba(255, 255, 255, 0.8),
    -1px -1px 1px rgba(0, 0, 0, 0.3);
}

.login-table td {
  padding: 5px 10px;
  vertical-align: middle;
  width: auto !important;
}

.login-table td:first-child {
  text-align: right;
  white-space: nowrap;
}

input[type="text"],
input[type="password"] {
  background: #444444;
  color: #ffcc66;
  border: 1px solid rgba(0, 0, 0, 0.5);
  padding: 4px 6px;
  font-family: "Times New Roman", serif;
  font-size: 11pt;
  width: 90%;
  box-shadow:
    inset 2px 2px 5px rgba(0, 0, 0, 0.7),
    0 0 5px rgba(187, 136, 85, 0.2);
  border-radius: 2px;
  outline: none;
  transition: all 0.2s ease-in-out;
}

input[type="text"]:focus,
input[type="password"]:focus {
  background: #333333;
  border-color: #bb8855;
  box-shadow:
    inset 2px 2px 5px rgba(0, 0, 0, 0.8),
    0 0 10px rgba(187, 136, 85, 0.6);
  color: #ffaa00;
}

.submit-btn-wrapper {
  margin-top: -20px;
  text-align: center;
  position: relative;
}

.bottom-links {
  text-align: center;
  margin-top: 15px;
}

.bottom-links a {
  color: #bb8855;
  font-family: "Times New Roman", Times, serif;
  font-size: 12pt;
}
