* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
}

body {  margin: 0; background-color: #051C43; }
 .container { max-width: auto; margin: 150px auto; padding: 1px;  border-radius: 8px;  }
.auth-conty {
  z-index: 10;
  width: 100%;
  max-width: 400px;
  padding: 20px 10px;
}

.form-toggle {
  display: flex;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.toggle-btn {
  flex: 1;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 15px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.toggle-btn.active {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
}


p {
  color: #fff;
  font-size: 18px;
  font-weight: 200;
  text-align: center;
  margin-bottom: 30px;
}

h1 {
  color: #fff;
  font-size: 28px;
  font-weight: 200;
  text-align: center;
  margin-bottom: 20px;
}

h2 {
  color: #fff;
  font-size: 58px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
}

.input-group {
  margin-bottom: 20px;
}

label {
  display: block;
  color: #fff;
  font-size: 14px;
  margin-bottom: 8px;
}

input[type="email"],
input[type="password"],
input[type="text"] {
  width: 100%;
  padding: 12px 15px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 16px;
  color: #fff;
  outline: none;
  transition: all 0.3s ease;
}

input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus {
  border-color: #64b5f6;
  box-shadow: 0 0 5px rgba(100, 181, 246, 0.5);
}

.remember-forgot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.remember,
.terms {
  display: flex;
  align-items: center;
}

.remember input[type="checkbox"],
.terms input[type="checkbox"] {
  margin-right: 8px;
  cursor: pointer;
}

.remember label,
.terms label {
  margin-bottom: 0;
  cursor: pointer;
}

.terms {
  margin-bottom: 20px;
}

.terms a,
.forgot {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.terms a:hover,
.forgot:hover {
  color: #bbdefb;
}

.auth-btn {
  width: 100%;
  padding: 12px;
  background: #336bdb;
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;

}

.auth-btn:hover {
  background: #1e88e5;
}

.alternate-link {
  margin-top: 20px;
  text-align: center;
}

.alternate-link p {
  color: #fff;
  font-size: 14px;
}

.alternate-link a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.alternate-link a:hover {
  color: #bbdefb;
}

a {
  color: #fff;
  text-decoration: none;
  font-weight: 100;
  transition: color 0.3s ease;
}

a:hover {
  color: #fff;
}
#customers {
  font-family: Arial, Helvetica, sans-serif;
  border-collapse: collapse;
  width: 100%;
}

#customers td, #customers th {
  border: 1px solid #ddd;
  padding: 4px;
}

#customers th {
  padding-top: 12px;
  padding-bottom: 12px;
  text-align: left;
  color: white;
}
@media (max-width: 480px) {
  .auth-box {
    padding: 30px 20px;
  }
}
.topnav { overflow: hidden;background-color: white;}
.topnav a {
  float: right;
  display: block;
  color: #6d6d6d;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.active {
  background-color: white;
  color: white;
}
.topnav .icon {
  display: none;
}
.dropdown {
  float: right;
  overflow: hidden;
}

.dropdown .dropbtn {
  font-size: 17px;  
  border: none;
  outline: none;
  color: #6d6d6d;
  padding: 14px 16px;
  background-color: inherit;
  font-family: inherit;
  margin: 0;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  float: none;
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
  text-align: right;
}
.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: white;
  color: black;
}
.dropdown-content a:hover {
  background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
  display: block;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: center;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: center;
  }
}  
  button:hover { background: #698286; }
  .error { color: red; text-align: center; }
  .success { color: green; text-align: center; }
  
  a.one:link, a.one:visited {
  background-color: white; 
  color: #336bdb; 
  border: 2px solid #336bdb;
  width: 100%;
  padding: 14px 25px;
  margin: 5px 0;
  text-align: center;
  text-decoration: none;
  display: block;
  border-radius: 8px;
}

a.one:hover, a.one:active {
    background-color: #336bdb;
  color: white;
  text-decoration:none;
}
 .center {
  display: flex;
  justify-content: center;
  align-items: center;
}

div.c {
position: relative;
 padding-top: 55%;
 }
 div.fixed {
  position: fixed;
  width: 100%;
  bottom: 1px;
} 
