.content-wrapper {
  min-height: 100vh;
}

.content-wrapper {
  display: flex;
  padding-top: 114px;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .content-wrapper {
    padding-top: 94px;
  }
}

.login-wrapper {
  display: flex;
  background: rgba(0,0,0,0.85);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90%;
  max-width: 650px;
  padding: 2em;
  border-radius: 20px;
  margin-top: 2em;
  margin-bottom: 2em;
}

@media (max-width: 768px) {
  .login-wrapper {
    width: auto;
    max-width: none;
    padding: 2em;
    margin: 1em;
  }
}


.register-header {
  color: white;
}

@media (max-width: 768px) {
  .register-header {
    margin-bottom: 2rem !important;
  }
}

.custom-form-label {
  color: white;
  font-size: 1.5rem;
}

@media (max-width: 768px) {
  .custom-form-label {
    font-size: 1rem;
  }
}

.custom-input:focus {
  color: white;
  background: rgba(44,44,44,0.49);
  border-color: rgba(0,0,0,0);
}

.custom-input {
  color: white;
  background: rgba(44,44,44,0.49);
  border-color: rgba(0,0,0,0);
  border-radius: 10px;
  font-size: 1.5em;
}

@media (max-width: 768px) {
  .custom-input {
    font-size: 1.2rem;
  }
}

.input-holder {
  padding-left: 1em;
  padding-right: 1em;
  padding-bottom: 0.5em;
  padding-top: 0.5em;
}

.registration-button:hover {
  background: rgba(234,224,213,0.37);
  border-color: rgba(0,0,0,0);
  color: #ffd700;
}

.registration-button:active {
  background: rgba(234,224,213,0.37);
  border-color: #ffd700;
  color: #ffd700;
}

.registration-button:focus {
  background: rgba(234,224,213,0.37);
  border-color: #ffd700;
  color: #ffd700;
}

.registration-button {
  font-size: 1.5em;
  border-radius: 10px;
  background: rgba(234,224,213,0.37);
  border-color: rgba(0,0,0,0);
}

@media (max-width: 768px) {
  .registration-button {
    font-size: 1.2rem;
  }
}

