/* ------------------------------------
old code --------------------------------
@import url('https://fonts.googleapis.com/css?family=Raleway:400,700');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;	
	font-family: Raleway, sans-serif;
}

body {
	background: linear-gradient(95deg, #6f6ac7, #b0dcff);		
}

.container {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100vh;
}
.screen {		
	background: linear-gradient(90deg, #529dff, #1d768f);		
	position: relative;	
	height: 600px;
	width: 360px;	
	box-shadow: 0px 0px 24px #5C5696;
}
.screen__content {
	z-index: 1;
	position: relative;	
	height: 100%;
}
.logo{
  margin-top:50px;
  margin-left:50px;
  width:70px;
  cursor:none;
}
.screen__background {		
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 0;
	-webkit-clip-path: inset(0 0 0 0);
	clip-path: inset(0 0 0 0);	
}
.screen__background__shape {
	transform: rotate(45deg);
	position: absolute;
}

.screen__background__shape1 {
	height: 520px;
	width: 520px;
	background: rgb(255, 255, 255);	
	top: -50px;
	right: 130px;	
	border-radius: 0 72px 0 0;
}

.screen__background__shape2 {
	height: 220px;
	width: 220px;
	background: #6a86b9;	
	top: -172px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape3 {
	height: 540px;
	width: 190px;
	background: linear-gradient(270deg, #519cff, #58568d);
	top: -24px;
	right: 0;	
	border-radius: 32px;
}

.screen__background__shape4 {
	height: 400px;
	width: 200px;
	background: #57bdcf;	
	top: 420px;
	right: 50px;	
	border-radius: 60px;
}

.login {
	width: 320px;
	padding: 30px;
	padding-top: 156px;
}

.login__field {
	padding: 20px 0px;	
	position: relative;	
}

.login__icon {
	position: absolute;
	top: 30px;
	color: #7875B5;
}

.login__input {
	border: none;
	border-bottom: 2px solid #D1D1D4;
	background: none;
	padding: 10px;
	padding-left: 24px;
	font-weight: 700;
	width: 75%;
	transition: .2s;
}

.login__input:active,
.login__input:focus,
.login__input:hover {
	outline: none;
	border-bottom-color: #6A679E;
}

.login__submit {
	background: #fff;
	font-size: 14px;
	margin-top: 30px;
	padding: 16px 20px;
	border-radius: 26px;
	border: 1px solid #D4D3E8;
	text-transform: uppercase;
	font-weight: 700;
	display: flex;
	align-items: center;
	width: 100%;
	color: #615add;
	box-shadow: 0px 2px 2px #3b328b;
	cursor: pointer;
	transition: .2s;
}

.login__submit:active,
.login__submit:focus,
.login__submit:hover {
	border-color: #6A679E;
	outline: none;
}

.button__icon {
	font-size: 24px;
	margin-left: auto;
	color: #7875B5;
}
 ------------------------------------
old code --------------------------------*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/



@import url("https://fonts.googleapis.com/css2?family=Jost:wght@400;500;700;800&family=Lora:wght@400;500;600&family=Poppins:wght@300;400;500;600;700;800;900&family=Roboto:wght@400;500;700&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed&family=DynaPuff&family=Epilogue:wght@500&display=swap');

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  outline: none;
  border: none;
  font-family: "poppins", sans-serif;
}

:root {
  --firstcolor: #8410ff;
  --firstcolorlight: #cb9bff;
  --gradient: linear-gradient(45deg, var(--firstcolor), var(--firstcolorlight));
}
::selection {
  background: var(--firstcolor);
  color: #000;
}
body {
  position: relative;
  height: 100vh;
  width: 100%;
  background: #0b0a0a;
  overflow: hidden;
  animation: changebg 5s linear infinite alternate-reverse;
}
@keyframes changebg {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg) brightness(200%);
  }
}
.grad {
  background: linear-gradient(
    transparent 40%,
    var(--firstcolor) 60%,
    transparent
  );
  animation: 4s rotate infinite linear;
  height: 100%;
  width: 100%;
  position: absolute;
}
.cubes {
  height: 100vh;
  width: 100%;
  display: flex;
  gap: 0.1rem;
  flex-wrap: wrap;
  position: relative;
  justify-content: space-between;
}

.pause {
  animation-play-state: paused;
}
@keyframes rotate {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(100%);
  }
}
.cube {
  z-index: 1;

  width: 4rem;
  height: 4rem;
  background: rgba(29, 29, 29, 0.980);
  /*background: #181717;*/
  transition: 1.5s ease-in-out;
}
.cube:hover {
  transition: 0s;
  background: var(--gradient);
}
.colorgreen {
  color: var(--firstcolor);
}
form {
  box-shadow: 3px 6px 10px rgba(0, 0, 0, 0.701);
  background: #0e0d0d;
  z-index: 100;
  text-align: center;
  padding: 2rem 1.5rem;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.inputdiv {
  margin: 1rem 0;
  display: grid;
  gap: 1rem;
}
.eyeicon.none #eyeoff {
  scale: 0;
}
.emailcont {
  position: relative;
}
.eyeicon ion-icon {
  transition: 0.2s ease;
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2rem;
  z-index: 100;
  cursor: pointer;
  opacity: 0.7;
}
input {
  padding: 1rem;
  background: #1d1d1d;
  color: azure;
  font-size: 1rem;
  transition: 0.3s ease;
  font-family: 'Epilogue', sans-serif;
}
input::placeholder {
  transition: 0.3s ease;
  font-weight: 100;
  font-family: 'Epilogue', sans-serif;
  color:  rgb(255, 215, 215);
}
input:is(:active, :focus) {
  background: rgb(19, 17, 17);
  border-radius: 10px/50%;
}
input:is(:active, :focus)::placeholder {
  transform: translateY(-0.5rem);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: light;
  color: #949494;
}
.data {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.data p:hover {
  text-decoration:overline;
  font-weight:lighter;
  cursor: pointer;
}
.button {
  width: 100%;
  padding: 1rem;
  margin-top: 1rem;
  transition: 0.3s ease;
  font-size: 1rem;
  font-weight: 600;
  background: var(--firstcolor);
  /* font-family: 'Barlow Condensed', sans-serif; */
  border-radius: 5px/50%;
	font-family: 'Epilogue', sans-serif;
  color: rgb(0, 0, 0);
  cursor:grab;
}
.button:hover {
  background: var(--firstcolor);
  font-weight: bold;
  font-family: 'DynaPuff', cursive;
  /*border-radius: 0px 50px 50px 0px;*/
  border-radius: 10px/50%;  
}

