@font-face {
  font-family: my-new-font;
  src: url(./Roboto-Black.ttf);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #507860;
  --dark-gren: #3b5847;
}

body {
  font-family: "my-new-font";
  background-color: rgb(255, 255, 255);
  height: 100vh;
  width: 100vw;
  letter-spacing: 2px;
}

/* Main Container */
.container {
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: 100vh;
}

/* LEFT SIDE */
.left-container {
  background-image: url("./cat.png");
  background-position: center;
  background-size: auto;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  flex-shrink: 1;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: white;
}

#overlay {
  position: absolute;
  top: 50%;
  width: 80%;
  text-align: center;
  font-size: 20px;
  color: white;
  background-color: rgb(0, 0, 0, 0.5);
}

/* RIGHT SIDE */
.right-container {
  background-color: black;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  position: relative;
  margin-left: 20px;
}

.right-header {
  font-size: 30px;
  margin-bottom: 20px;
  margin-left: 20px;
}

.right-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  flex-direction: row; /* Update this */
}

.right-body {
  padding: 10px 0;
  background-color: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.label-input {
  margin: 20px;
}

input {
  display: block;
  width: 250px;
  border: 2px solid rgb(85, 85, 85);
}

input:focus,
input:focus-visible {
  outline: none;
  border-color: black;
}

.right-footer {
  margin-top: 20px;
  margin-left: 20px;
}

a {
  text-decoration: none;
  color: var(--green);
}

a:hover {
  color: #3b5847;
}

.right-footer > button {
  padding: 10px 20px;
  margin: 20px 0;
  border-radius: 3px;
  color: white;
  font-weight: bold;
  border: 3px solid var(--green);
  background-color: black;
}

.right-footer > button:hover {
  background-color: var(--green);
}

.right-footer > button:active {
  background-color: var(--dark-gren);
  border: 3px solid var(--dark-gren);
}

.signup-text {
  margin: 20px 0;
}
