@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,600;0,700;0,800;1,300;1,400;1,600;1,700;1,800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: var(--bg-color);
  font-family: "Open Sans", sans-serif;
  overflow: auto;
}

nav {
  display: flex;
  justify-content: space-between;
  margin: 0 0.5rem;
  padding: 0.5rem 0;
  align-items: center;
}

.wrapper {
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 2fr 1fr;
}

h1 {
  font-size: 25px;
  color: #4481c3;
}

h2 {
  font-size: 35px;
  color: #4481c3;
  margin-bottom: 15px;
  font-weight: normal;
}

form {
  display: inline-grid;
  place-items: center;
  width: 100%;
  margin-top: 5rem;
}

.illustration {
  position: relative;
}

.app-title-text {
  font-family: "Poppins", sans-serif;
  position: absolute;
  top: 50px;
  left: 55px;
  font-size: 50px;
  color: #4481c3;
  font-weight: bold;
}

.input-container {
  display: flex;
  align-items: center;
  border: 1px solid #a5abb9;
  border-radius: 5px;
  margin: 5px 0;
  background: #f0f0f0;
  min-width: 235px;
  max-width: 235px;
}

.forgot-password {
  margin-top: 5px;
  font-size: 12px;
  color: #a5abb9;
  cursor: pointer;
}

input,
input:focus {
  border: none;
  outline: none;
  padding: 12px 0;
  background: transparent;
}

input::placeholder {
  color: #a5abb9;
}

p {
  background: transparent;
}

svg {
  margin: 0 5px;
}

img {
  margin: 0.3rem;
}

.gradient-button {
  margin: 10px;
  font-weight: bold;
  font-size: 16px;
  padding: 8px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: #fff;
  box-shadow: 0 0 20px #eee;
  border-radius: 10px;
  width: 200px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  cursor: pointer;
  display: inline-block;
  border-radius: 25px;
  border: none;
  background-image: linear-gradient(
    to right,
    #00d2ff 0%,
    #3a7bd5 51%,
    #00d2ff 100%
  );
}

.gradient-button:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  margin: 8px 10px 12px;
  background-position: right center;
}

#viewer {
  display: grid;
  place-items: center;
}

.pwdToggle {
  cursor: pointer;
}

/*Snackbar Style*/
#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #76a3e9;
  color: white;
  text-align: center;
  border-radius: 2px;
  padding: 8px 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  font-size: 17px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  bottom: 0%;
  opacity: 0;
}
#snackbar.show {
  bottom: 10%;
  visibility: visible;
  opacity: 1;
}
/*End Snackbar Style*/
