body {
  align-items: center;
  background-color: #000;
  display: flex;
  height: 100vh;

  margin: 0;
}

.wrapper{

  background-color: #A020F0;
  position: fixed;
  top: 0;
  width: 100%;
  margin: 0 auto;
  float: right;
  padding-bottom: 20px;

}



nav {
  float: right;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
nav li {
  display: inline-block;
  margin-left: 50px;
  padding-top: 20px;
  position: relative;

}


nav a {
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
}
nav a:hover {
  color: #000;
}

nav a::before {
  content: '';
  display: block;
  height: 5px;
  background-color: #666;

  position: absolute;
  top: 0;
  width: 0%;

  transition: all ease-in-out 250ms;
}

nav a:hover::before {
  width: 100%;
}

.signup-form {
  background-color: #15172b;
  border-radius: 20px;
  box-sizing: border-box;
  height: 780px;
  padding: 20px;
  width: 340px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.index-form {
  background-color: #15172b;
  border-radius: 100px;
  box-sizing: border-box;
  height: 70%;
  padding: 30px;
  width: 80%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  	text-align: center;

}

.title {
  color: #eee;
  font-family: 'Didot', sans-serif;
  font-size: 36px;
  font-weight: 600;
  margin-top: 30px;
}

.subtitle {
  color: #eee;
  font-family: 'Didot', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin-top: 10px;
}

.input-container {
  height: 50px;
  position: relative;
  width: 100%;
}

.ic1 {
  margin-top: 10px;
}



.submit {
  background-color: #08d;
  border-radius: 12px;
  border: 0;
  box-sizing: border-box;
  color: #eeeeee;
  cursor: pointer;
  font-family: 'Didot', sans-serif;
  font-size: 18px;
  height: 50px;
  margin-top: 38px;
  text-align: center;
  width: 100%;
  display: block;

}
a.submit {
    padding-top: 14px;
}

p.signup-error {
  color:  red;
}

p.profile-welcome {

	font-family: 'Didot', sans-serif;
	font-size: 30px;
	font-weight: 600;
	padding: 10px;

	color: RED;
}

.list-table {
    text-align: center;
    margin: auto;
}

.list-table td, .list-table th {
    padding: 4px 20px;
    border: solid 1px;
    background: yellow;
}
