/* Start Variables */
:root {
  --main-color: #f48522;
  --sec-color: #5a575b;
  --innen-space: 8px;
  /* #0382 */
  --section-spacing: 40px;
  --fucking-font: "Dancing Script", cursive;
}
@media (min-width: 992px) {
  :root {
    --section-spacing: 90px;
  }
}
@media (min-width: 1200px) {
  :root {
    --section-spacing: 90px;
  }
}
/*  */
@media (min-width: 768px) {
  :root {
    --innen-space: 4px;
  }
}
/* End Variables */

/* Start Global Rules */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Roboto", sans-serif;
}
::selection {
  background-color: var(--main-color);
  color: #fff;
}
.container {
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
/* Start Compinen */
.section-spac {
  margin-top: var(--section-spacing);
  margin-bottom: var(--section-spacing);
}
/* End Compinen */
/* Small */
@media (min-width: 768px) {
  .container {
    width: 750px;
  }
}
/* Medium */
@media (min-width: 992px) {
  .container {
    width: 970px;
  }
}
/* Larg */
@media (min-width: 1200px) {
  .container {
    width: 1170px;
  }
}
/* End Global Rules */
body {
  font-family: "Roboto", sans-serif;
  background: rgb(244, 133, 34);
  background: linear-gradient(90deg, #f58220 32%, #fdb913 84%);
  height: 100vh;
  display: flex;
  place-items: center;
  place-content: center;
}
.signCard  {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  place-items: center;
  background-color: #fff;
  padding: var(--innen-space);
  border-radius: var(--innen-space);
  box-shadow: 0 0 10px 11px #0382;
  max-width: 100%;
  max-height: 100%;
  position: relative;
  overflow: hidden;
}
h1 {
  text-align: center;
  color: var(--sec-color);
  font-family: var(--fucking-font);
  text-shadow: -1px 1px 2.3px #000000de;
}
form {
  margin-bottom: calc(var(--innen-space) + 15px);
}
form input {
  display: block;
  margin-bottom: var(--innen-space);
  padding: var(--innen-space) 0px;
  border: none;
  padding-left: 3px;
  border-bottom: 1px solid #000;
  outline: none;
  margin: 13px auto;
}
@media (min-width: 968px) {
  form input {
    width: 300px;
    padding: 10px 5px;

    font-size: 18px;
  }
}
@media (min-width: 1200px) {
  form input {
    width: 500px;
    margin-bottom: 20px;
  }
}
input[type="submit"] {
  background-color: #fff;
  color: var(--main-color);
  border-radius: 5px;
  border: 1px solid var(--main-color);
  outline: none;
  margin: 20px auto 0;
  padding: 8px 10px;
  font-size: 18px;
  cursor: pointer;
}
@media (max-width: 767px) {
  input[type="submit"] {
    font-size: 14px;
  }
}
img {
  display: none;
}
@media (min-width: 768px) {
  img {
    display: block;
    position: absolute;
    left: 0;
    width: initial;
    height: 100%;
  }
}