:root {
  --mainP: 0.7;
  --mainColor: #1877f2;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Helvetica, sans-serif;
  background-color: #eee;
}
.main {
  height: 100vh;
  align-items: center;
  justify-content: center;
}
.left {
  height: 40%;
}
h1 {
  font-weight: bold;
  font-size: 4em;
  opacity: 0.9;
}
.left p {
  opacity: var(--mainP);
  margin-top: 5px;
}
.panel {
  background-color: white;
  width: 400px;
  padding: 15px;
  margin: 20px 0;
  border-radius: 6px;
  box-shadow: 0 2px 20px 2px rgb(150 150 150);
  text-align: center;
  position: relative;
}

.panel form {
  padding: 25px;
}
.panel label {
  width: 100%;
}

.panel input {
  min-width: 100%;
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid #d2d2d2;
  border-radius: 6px;
  color: darkblue;
  font-size: 15px;
  font-weight: bold;
}
input[type="checkbox"] {
  min-width: fit-content;
}

input::placeholder {
  font-size: 13px;
  font-weight: 100;
}

input:focus,
button:focus,
a:focus {
  outline: none;
  box-shadow: none !important;
}

.login {
  font-size: 16px;
  font-weight: bolder;
  width: 100%;
  padding: 6px;
  margin: 5px auto;
  border-radius: 7px;
  box-shadow: 0px 0px 1px blue;
}
.forget {
  margin-top: 2em;
}
hr {
  margin: 1em auto 2em auto;
  color: #aaa;
}
.btn-success {
  padding: 12px 1.5em;
  border-radius: 10px;
  background-color: #42b72a;
  font-weight: bold;
  border: none !important;
}
.creat-p {
  position: absolute;
  bottom: -4em;
  left: 13%;
  font-size: 14px;
}
.creat-p a {
  margin-right: 5px;
  font-weight: bold;
}
.creat-p p {
  opacity: var(--mainP);
}
a {
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  cursor: pointer;
}
.press a:hover {
  text-decoration: none;
  cursor: pointer;
}
@media screen and (max-width: 991px) {
  .left {
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .creat-p {
    font-size: 11px;
  }
}
@media screen and (max-width:600px) {
  
  .panel{
    margin-left: 1em;
  }
}
/*End Page one*/
