.auth-body {
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(270deg, #007bff, #00c3ff, #7b2ff7, #f107a3);
    background-size: 800% 800%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.auth-container {
    width: 100%;
    max-width: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.auth-outer-card {
    background-color: #212121;
    font-family: Arial;
    color: white;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0px 4px 20px #212121;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.auth-inner-card {
    background-color: #2e2e2e;
    border-radius: 30px;
    text-align: center;
    width: 100%;
    padding-bottom: 5px;
}

.auth-logo {
    height: auto;
    width: 400px;
    padding-top: 20px;
}

.auth-inner-card h1 {
    font-size: 40px;
    font-weight: bold;
    padding-top: 10px;
    background: linear-gradient(180deg, #005eff 0%, #00c3ff 100%);
    background-clip: text;
    -webkit-text-fill-color: transparent;}

.auth-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding-bottom: 20px;
}

.auth-group label {
    font-size: 20px;
}

.auth-group input {
    font-family: Arial;
    width: 80%;
    height: 30px;
    font-size: 20;
    align-self: center;
    border: 2px solid;
    border-image: linear-gradient(90deg, #005eff, #00c3ff) 1;
    background-color: #212121;
    color: white;
}

.auth-group input:focus {
    outline: none;
    box-shadow: 0px 0px 20px #005eff;
    border: 2px solid;
    border-image: linear-gradient(90deg, #005eff, #00c3ff) 1;
}

.auth-btn {
  background: linear-gradient(90deg, rgba(0,94,255,1), rgba(0,195,255,1));
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  width: 40%;
}

.auth-btn:hover {
    background: linear-gradient(90deg, #00c3ff, #005eff);
}

.login-form {
    font-size: 25px;
    font-weight: bold;
    gap: 100px;
}

.register-form .auth-group input{
    font-family: Arial;
    width: 80%;
    height: 30px;
    font-size: 20;
    align-self: center;
    border: 2px solid;
    border-image: linear-gradient(90deg, #005eff, #00c3ff) 1;
    background-color: #212121;
    color: white;
}

.register-form .auth-group label{
    font-size: 20px;
    font-weight: bold;
}
