:root {
  --light-color: #fff;
  --light-color-alt: coral;
  --primary-background-color: linear-gradient(#fff, rgba(255, 127, 80, .1));
  --secondary-background-color: #fff;
  --other-color: #000;
}

body.dark-theme{
  --light-color: #fff;
  --light-color-alt: coral;
  --primary-background-color: #212D3A;
  --secondary-background-color: #415266;
  --other-color: #fff;
}


body {
  margin: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  background: var(--primary-background-color);
  background-repeat: no-repeat;
  color: coral;
  font-family: "Poppins";
  max-width: 160rem;
}

.goBack {
  background-color: inherit;
  justify-content: left;
  position: absolute;
  top: 10%;
}

#notif-box3 {
    position: absolute;
    padding: .5em;
    font-size: .5em;
    display: flex;
    width: fit-content;
    color: #000;
    /* right: 0; */
    /* left: 0; */
    top: 0;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
    background-color: #d3ffd3;
    visibility: hidden;
    z-index: 99999999999999;
    /* width: 70vw; */
}

#notif-box3 h4 {
    display: flex;
    flex-direction: row;
    align-items: center;
    
}

.ri-check-line {
  margin-left: -7em;
}

#notif-box3 h4 span {
    margin-right: 9rem;
    /* width: max-content; */
}

.logo-name {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  font-weight: bold;
}

.logo-img {
  width: 2em;
  height: 2em;
  margin-right: 1em;
}


.login-signUp {
  display: flex;
  position: relative;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-size: 1.3em;
  width: 40vw;
  border-radius: 0;
  padding-left: 10vw;
  padding-right: 10vw;
  color: #4B477E;
}

button {
  border-radius: 5px;
  border: none;
}

.login {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 2em;
}

.login button {
  margin: 1em 0 1em 0;
  width: max-content;
}

.signUp-box {
  border-top: 2px solid gray;
  margin-top: 2em;
}

.email {
  background-color: rgb(238, 236, 236);
  color: rgb(65, 65, 65);
  border: 1px solid gray;
}

button {
  color: rgb(70, 70, 70);
  background-color: #fff;
  padding: .8em;
  padding-left: 3em;
  padding-right: 3em;
  border: 1px solid gray;
  cursor: pointer;
  border-radius: 50px;
}

.Email-login-box {
  display: none;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  height: 100vh;
  text-align: left;
  gap: 1em;
  padding-left: 10vw;
  padding-right: 10vw;
  color: #4B477E;
}

.email-login {
  margin: 1em 0 1em 0;
}


.Email-login-box input {
  border: none;
  background-color: rgba(204, 204, 204, 0.3);
  padding: .5em;
}

.Email-login-box .signUp-box button{
  width: 100%;
}

.signUp-page {
  display: none;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
  text-align: left;
  gap: 1em;
  padding-left: 10vw;
  padding-right: 10vw;
  color: #4B477E;
}

.signUp-page input,
.signUp-page select {
  border: none;
  background-color: rgba(197, 197, 197, 0.3);
  padding: .5em;
}

i {
  cursor: pointer;
  font-size: 1.5em;
}


@media screen and (min-width: 1024px) {
#notif-box3 {
  width: fit-content;
}

.ri-check-line {
margin-left: none;
}
}