:root {
  --electric-border-color: #6348dd;
  --electric-light-color: oklch(from var(--electric-border-color) l c h);
  --gradient-color: oklch(
    from var(--electric-border-color) 0.3 calc(c / 2) h / 0.4
  );
  --color-neutral-900: oklch(0.185 0 0);
}

* { 
  margin: 0;
  padding: 0;
        box-sizing: border-box; 
        font-family: -apple-system, BlinkMacSystemFont, "segoe ui", roboto, oxygen, ubuntu, cantarell, "fira sans", "droid sans", "helvetica neue", Arial, sans-serif; 
        font-size: 16px;
        -webkit-font-smoothing: antialiased; 
        -moz-osx-font-smoothing: grayscale;
        }
        body {
	margin: 0;
	  font-family: system-ui, -apple-system, sans-serif;
  background-color: oklch(0.145 0 0);
  color: oklch(0.985 0 0);
  height: 100vh;
  overflow: hidden;
	font-size: 12px;
	line-height: 18px;
	color: #ffffff;
   /*  text-shadow: 1px 1px 0 #cccccc, 1px -1px 0 #cccccc, -1px 1px 0 #cccccc, -1px -1px 0 #cccccc, 1px 0px 0 #cccccc, 0px 1px 0 #cccccc, -1px 0px 0 #cccccc, 0px -1px 0 #cccccc; */
  text-shadow: 2px 2px 2px #AAAAAA;
  
    
}
        .login {
        width: 400px; 
        margin: 20px auto;
        }
        .login h1 {
         
        text-align: center; 
        color: #6348dd; 
        font-size: 18px; 
        background-color: #6348dd; 
        color: #ffffff;
		border-radius: 24px;
		padding: 15px; 
        }
        .login form {
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        padding-top: 20px;
        }
        .login form label { 
        display: flex; 
        justify-content: center; 
        align-items: center; 
        width: 50px; 
        height: 50px; 
        background-color: #6348dd; 
        color: #ffffff;
		border-radius: 24px 0 0 24px;
        }
        .login form input[type="password"], .login form input[type="text"] {
        width: 210px; 
        height: 50px; 
        border: 1px solid #dee0e4; 
        margin-bottom: 20px; 
        padding: 0 15px;
		border-radius: 0 24px 24px 0;
        }
        .login form input[type="submit"] { 
        width: 100%; 
        padding: 15px; 
        margin-top: 20px; 
        background-color: #6348dd; 
        border: 0; 
        cursor: pointer; 
        font-weight: bold; 
        color: #ffffff; 
        transition: background-color 0.2s;
		border-radius: 24px;
        }
        .login form input[type="submit"]:hover { 
        background-color: #6348dd; 
        transition: background-color 0.2s;
        }
		
	
	      form {
        display: flex; 
        flex-wrap: wrap; 
        justify-content: center; 
        padding-top: 20px;
        }
       form label { 
        display: flex; 
        justify-content: center; 
        align-items: center; 
        width: 50px; 
        height: 50px; 
        background-color: #6348dd; 
        color: #ffffff;
		border-radius: 24px 0 0 24px;
        }
        form input[type="password"],  form input[type="text"] {
        width: 210px; 
        height: 50px; 
        border: 1px solid #dee0e4; 
        margin-bottom: 20px; 
        padding: 0 15px;
		border-radius: 0 24px 24px 0;
        }
         form input[type="submit"] { 
        width: 100%; 
        padding: 15px; 
        margin-top: 20px; 
        background-color: #6348dd; 
        border: 0; 
        cursor: pointer; 
        font-weight: bold; 
        color: #ffffff; 
        transition: background-color 0.2s;
		border-radius: 24px;
        }
         form input[type="submit"]:hover { 
        background-color: #6348dd; 
        transition: background-color 0.2s;
        }
	
	
	
	
    .navtop {
    background-color: #6348dd;
    height: 60px;
    width: 100%; 
    border: 0;
    }
    .navtop div {
    display: flex;
    margin: 0 auto;
    width: 90%;
    height: 100%;
    }
    .navtop div h1, .navtop div a {
    display: inline-flex;
    align-items: center;
    }
    .navtop div h1 { 
    flex: 1;
    font-size: 24px;
    padding: 0; 
    margin: 0; 
    color: #ffffff; 
    font-weight: normal;
    }
    .navtop div a { 
    padding: 0 20px;
    text-decoration: none;
    color: #ffffff; 
    font-weight: bold;
    }
    .navtop div a i {
    padding: 2px 8px 0 0;
    }
    .navtop div a:hover { 
    color: #cccccc;
    }
    body.loggedin {
    background-color: oklch(0.145 0 0);
  color: oklch(0.985 0 0);
    }
    .content { 
    width: 100%; 
    margin: 0 auto;
    }
    .content h2 {
    margin: 0; 
    padding: 25px 0; 
    font-size: 22px; 
    border-bottom: 1px solid #e0e0e3; 
    color: #6348dd;
    }
    .content > p, .content > div {
    box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
    margin: 5px 0;
    padding: 5px;
    }
    .content > p table td, .content > div table td {
    padding: 5px;
    }
    .content > p table td:first-child, .content > div table td:first-child { 
    font-weight: bold; 
    color: #6348dd; 
    padding-right: 15px;
    }
    .content > div p { 
    padding: 5px;
    margin: 0 0 10px 0;
    }
	
	textarea {
  width: 100%;
  height: 100px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 1px solid;
  border-color: #6348dd;
  border-radius: 24px;
  font-size: 10px;
  resize: none;
  background: none;
}

.contentc {
  width: 100%;
  height: 100px;
  padding: 12px 20px;
  box-sizing: border-box;
  border: 1px solid;
  border-color: #6348dd;
  border-radius: 24px;
  font-size: 10px;
  resize: none;
  background: none;
}

/* Main container */
.main-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

/* SVG positioning */
.svg-container {
  position: absolute;
}

/* Card container */
.card-container {
  padding: 2px;
  border-radius: 24px;
  position: relative;
  background: linear-gradient(
      -30deg,
      var(--gradient-color),
      transparent,
      var(--gradient-color)
    ),
    linear-gradient(
      to bottom,
      var(--color-neutral-900),
      var(--color-neutral-900)
    );
}

/* Inner container */
.inner-container {
  position: relative;
}

/* Border layers */
.border-outer {
  border: 2px solid rgba(72, 87, 221, 0.5);
  border-radius: 24px;
  padding-right: 4px;
  padding-bottom: 4px;
}

.main-card {
  width: 350px;
  height: 500px;
  border-radius: 24px;
  border: 2px solid var(--electric-border-color);
  margin-top: -4px;
  margin-left: -4px;
  filter: url(#turbulent-displace);
}

/* Glow effects */
.glow-layer-1 {
  border: 2px solid rgba(221, 132, 72, 0.6);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(1px);
}

.glow-layer-2 {
  border: 2px solid var(--electric-light-color);
  border-radius: 24px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  filter: blur(4px);
}

/* Overlay effects */
.overlay-1 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: 1;
  mix-blend-mode: overlay;
  transform: scale(1.1);
  filter: blur(16px);
  background: linear-gradient(
    -30deg,
    white,
    transparent 30%,
    transparent 70%,
    white
  );
}

.overlay-2 {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  opacity: 0.5;
  mix-blend-mode: overlay;
  transform: scale(1.1);
  filter: blur(16px);
  background: linear-gradient(
    -30deg,
    white,
    transparent 30%,
    transparent 70%,
    white
  );
}

/* Background glow */
.background-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 24px;
  filter: blur(32px);
  transform: scale(1.1);
  opacity: 0.3;
  z-index: -1;
  background: linear-gradient(
    -30deg,
    var(--electric-light-color),
    transparent,
    var(--electric-border-color)
  );
}

/* Content container */
.content-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Content sections */
.content-top {
  display: flex;
  flex-direction: column;
  padding: 48px;
  padding-bottom: 16px;
  height: 100%;
}

.content-bottom {
  display: flex;
  flex-direction: column;
  padding: 48px;
  padding-top: 16px;
}

/* Typography */
.title {
  font-size: 36px;
  font-weight: 500;
  margin-top: auto;
}

.description {
  opacity: 0.5;
  text-align: center;
}

/* Divider */
.divider {
  margin-top: auto;
  border: none;
  height: 1px;
  background-color: currentColor;
  opacity: 0.1;
  mask-image: linear-gradient(to right, transparent, black, transparent);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    black,
    transparent
  );
}