:root {
  --dark: #34495e;
  --light: #ffffff;
  --success: #0abf30;
  --error: #e24d4c;
  --warning: #e9bd0c;
  --info: #3498db;
}

html {
  background-image: url("../assets/t2b3-bg-1b.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
}

body {
  font-family: "Lato", sans-serif;
  color: #3a3c47;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0;
  padding: 0;
  padding-bottom: 80px;
}

h1 {
  margin-top: 48px;
  margin-bottom: 10px;
  color: white;
  text-shadow: 2px 2px 4px black;
  padding: 0 20px;
}

form {
  width: 840.458190918px;
  background-color: #fff;
  position: relative;
  max-width: 400px;
  width: 100%;
  padding: 58px 44px;
  border: 1px solid #e1e2f0;
  border-radius: 4px;
  box-shadow: 0 0 5px 0 rgba(42, 45, 48, 0.12);
  transition: all 0.3s ease;
  padding-top: 35px;
}

.row {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}

.row label {
  font-size: 15px;
  color: black;
  margin-left: 4px;
}

.row input {
  flex: 1;
  padding: 13px;
  border: 1px solid #d6d8e6;
  border-radius: 4px;
  font-size: 16px;
  transition: all 0.2s ease-out;
}

.row input:focus {
  outline: none;
  box-shadow: inset 2px 2px 5px 0 rgba(42, 45, 48, 0.12);
}

.row input::-moz-placeholder {
  color: #c8cddf;
}

.row input::placeholder {
  color: #c8cddf;
}

button {
  width: 100%;
  padding: 12px;
  font-size: 18px;
  background: #15c39a;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-family: "Open Sans", sans-serif;
  margin-top: 15px;
  transition: background 0.2s ease-out;
}

button:hover:not(.btn-blue-creds) {
  background: rgb(91, 155, 214);
}

@media (max-width: 500px) {
  body {
    margin: 0 18px;
  }
  form {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 20px 0;
  }
  .row label {
    color: white;
    text-shadow: 2px 2px 4px black;
  }
  .btn-blue-creds-submit {
    border: 1px solid rgba(255, 255, 255, 0.699);
  }
}
.passdiv {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.passdiv input {
  width: 70%;
  margin-right: 4px;
}

.passdiv button {
  margin-top: 0px;
  border-radius: 4px;
  background: #4197bf;
  width: 30%;
  position: absolute;
  right: 16px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.passdiv button.btn-green-creds {
  background: #15c39a;
}

.btn-blue-creds, .btn-blue-creds-submit {
  background: #4197bf;
}
.btn-blue-creds:hover, .btn-blue-creds-submit:hover {
  background: rgb(91, 155, 214);
}

.profIMG {
  height: 115px;
  width: 135px;
  border-radius: 10px;
}

.label_upload {
  position: absolute;
  bottom: 5px;
  right: 5px;
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  box-shadow: 1px 1px 3px rgb(129, 129, 129);
  cursor: pointer;
}
.label_upload input[type=file] {
  display: none;
}

#inDv_pic {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}/*# sourceMappingURL=login.css.map */