:root{
    --bg-color: #01141d;
    --color-primary: #2EDAF1;
    --color-secondary: #54595F;
    --color-text: #c2c2c2;
    --color-white: #fff;
    --primary-font-family: "Roboto";
    --secondary-font-family: "Roboto Slab";
    --text-font-family: "Orbitron", sans-serif; 
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a{
    text-decoration: none;
    color: #f2f2f2;
}

li{
    list-style: none;
}

body{
    background-color: var(--bg-color);
    background-image: radial-gradient(at center center, #00E1FF24 0%, #01141d 70%);
    font-family: var(--primary-font-family);
    color: var(--color-white);
}

nav {
    padding: 10px;
    width: 100%;
    color: var(--color-white);
    box-shadow: 0 0 10px var(--color-white);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    margin: auto;
}

.logo img{
    width: 200px;
    filter: drop-shadow(2px 5px 10px var(--color-primary));
}

.nav-links{
    display: flex;
    justify-content: space-between;
    gap: 15px;
    align-items: center;
}

.nav-group{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.container {
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.form-card {
  width: 400px;
  min-height: 250px;
  margin: 0 auto;
  background: rgba( 255, 255, 255, 0.15 );
  box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
  backdrop-filter: blur( 18px );
  -webkit-backdrop-filter: blur( 18px );
  border: 1px solid rgba( 255, 255, 255, 0.18 );
  border-radius: 1rem;
  padding: 1.5rem;
  z-index: 10;
  color: whitesmoke;
  display: block;
}

.title {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  padding-bottom: 10px;
  text-align: center;
}

.form-container input{
    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 1rem;
    outline-color: blueviolet;
}

.remember-btn input, .remember-btn label{
 width: unset;
 cursor: pointer;
}

.btn {
  background: none;
  border: none;
  text-align: center;
  font-size: 1rem;
  color: whitesmoke;
  background-color: var(--bg-color);
  padding: 0.8rem 1.8rem;
  border-radius: 2rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  cursor: pointer;
}

.forgot:hover{
    color: #ffa600;
}
.signup-btn{
    text-align: center;
    padding-top: 10px;
    color: var(--color-white);
}
.signup-btn span{
    color: var(--color-white);
    font-weight: 600;
    text-transform: uppercase;
}
.signup-btn span:hover{
    color: #01141d;
}

.bck-btn{
    margin-left: 30%;
}

.bck-btn a{
    padding: 10px 50px;
    border: 2px solid var(--bg-color);
    color: var(--bg-color);
}

.bck-btn a:hover{
   color: var(--color-white);
   border: 2px solid var(--color-white);
}

.blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: linear-gradient(
    180deg,
    rgba(47, 184, 255,0.42) 31.77%,
    #5c9df1 100%
  );
  mix-blend-mode: color-dodge;
  -webkit-animation: move 25s infinite alternate;
          animation: move 25s infinite alternate;
  transition: 1s cubic-bezier(0.07, 0.8, 0.16, 1);
}

.blob:hover {
  width: 520px;
  height: 520px;
  -webkit-filter: blur(30px);
          filter: blur(30px);
  box-shadow:
    inset 0 0 0 5px rgba(255,255,255, 0.6),
    inset 100px 100px 0 0px #fa709a,
    inset 200px 200px 0 0px #784ba8,
    inset 300px 300px 0 0px #2b86c5;
}

@-webkit-keyframes move {
  from {
    transform: translate(-100px, -50px) rotate(-90deg);
    border-radius: 24% 76% 35% 65% / 27% 36% 64% 73%;
  }

  to {
    transform: translate(500px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67% / 68% 55% 45% 32%;
  }
}

@keyframes move {
  from {
    transform: translate(-100px, -50px) rotate(-90deg);
    border-radius: 24% 76% 35% 65% / 27% 36% 64% 73%;
  }

  to {
    transform: translate(500px, 100px) rotate(-10deg);
    border-radius: 76% 24% 33% 67% / 68% 55% 45% 32%;
  }
}

@media only screen and (max-width: 450px) {
    .nav-container{
        flex-direction: column;
        align-items: flex-start;
    }
    .logo img{
        width: 120px;
    }
    .nav-links .nav-group:nth-child(3){
        display: none;
    }
    .form-card {
      width: 90%;
    }
}

