:root{
  --sun-color: #FDE047;
  --moon-color: #334155;
  --inactive-color-forMoon: #FEF9C3;
  --inactive-color-forSun: #94A3B8;
  --gold-color: #F6C453;
  --gold-brown-color: #C97B32;
  --oliver-color-saturated: #599660;
  --blue-color: #146EF5;
  --gray-color: #F0F0F0;
  --dark-color-links: #151515;
  --dark-mode-back-color: #212529;
  --input-back-on-dark: #dfdfdf;
}

* {
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-image: linear-gradient(to right , #305c35 , #C97B32);
}

.container {
  background-color: white;
  position: relative;
  height: 350px;
  width: 400px;
  border-radius: 30px;
  box-shadow: 0 5px 25px rgb(1 1 1 / 15%);
  overflow: hidden;
}

@media (max-width: 768px) {
  .container{
    width: 330px;
    overflow: unset;
  }
}

.container p {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.3px;
  margin: 20px 0;
}

.container span {
  font-size: 12px;
}

.container a {
  color: var(--gray-color);
}

.with-toggle-menu-left {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.with-toggle-menu-left h1 {
  margin-bottom: 25px;
}

.with-toggle-menu-left span {
  font-size: 15px;
}

.with-toggle-menu-left .send-code{
  color: #60a0ff;
}

.with-toggle-menu-left .icons-with-left {
  margin-bottom: 15px;
}

.with-toggle-menu-left .icons-with-left a {
  margin: 0 7px;
  color: var(--oliver-color-saturated);
  background-color: var(--gray-color);
  padding: 5px 7px;
  border-radius: 10px;
}

.with-toggle-menu-left .icons-with-left .facebook {
  padding: 5px 3px;
}

.with-toggle-menu-left input {
  margin: 10px 0px 10px;
  width: 80%;
  padding: 10px;
  border-radius: 10px;
  outline: none;
  border: 2px solid var(--oliver-color-saturated);
}

.with-toggle-menu-left button {
  margin-top: 20px;
  background-color: var(--oliver-color-saturated);
  color: white;
  padding: 10px 15px;
  border-radius: 10px;
  font-size: 14px;
  transition: 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
}

.with-toggle-menu-left button:hover,
.with-toggle-menu-left button:focus {
  background-color: white;
  color: var(--oliver-color-saturated);
  border: 2px solid var(--oliver-color-saturated);
}

body.dark-mode{
  background-image: linear-gradient(to right , #27412a , rgb(23, 23, 23));
}

body.dark-mode .container {
  background-color: var(--dark-mode-back-color);
}

body.dark-mode .container h1{
  color: white;
}

body.dark-mode .container .use-email{
  color: white;
}

body.dark-mode .container input{
  background-color: transparent;
  color: white;
}

body.dark-mode .container button:hover,
body.dark-mode .container button:focus{
  background-color: var(--dark-mode-back-color);
}