/*
body {
  font-family: Arial, sans-serif;
  background-color: #f0f4f8;
  margin: 0;
  padding: 0;
}

.container {
  background-color: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  width: 300px;
  margin: 100px auto;
  text-align: center;
}

h1 {
  margin-bottom: 20px;
  color: #023e8a;
}

form {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 5px;
  color: #0077b6;
}

input[type="text"], input[type="email"], input[type="password"] {
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  width: 100%;
}

input[type="submit"] {
  background-color: #00b4d8;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

input[type="submit"]:hover {
  background-color: #0096c7;
}

a {
  color: #0077b6;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
*/


body { 
  background-color: rgb(5, 215, 238); 
  } 
  .container { 
  display: flex; 
  flex-direction: column; 
  justify-content: center; 
  align-items: center; 
  height: 100vh; 
  color:white;
  font-family: Arial, Helvetica, sans-serif;
  } 
  
  form { 
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  } 
  label { 
  display: block; 
  margin-bottom: 5px; 
  } 
  
  input[type="text"], 
  input[type="email"], 
  input[type="password"] { 
  width: 100%; 
  padding: 10px; 
  margin-bottom: 20px; 
  border: 1px solid #ccc; 
  border-radius: 5px; 
  } 
  input[type="submit"] { 
  background-color: white;
  color: rgb(5, 215, 238); 
  padding: 10px 20px; 
  border: none; 
  border-radius: 5px; 
  cursor: pointer; 
  } 
  
  input[type="submit"]:hover { 
  background-color: rgb(5, 215, 238);
  color:white;
};


body 
{font-family: Arial, Helvetica, sans-serif;}

.navbar {
width: 100%;
background-color: #11ade6fc;
overflow: auto;
}

.navbar a {
float: left;
padding: 12px;
color: white;
text-decoration: none;
font-size: 17px;
padding-top:5px;
}

.navbar a:hover {
background-color: #000;
}

.active {
background-color: #29e2d5;
}

@media screen and (max-width: 500px) {
.navbar a {
  float: none;
  display: block;
}
}

/* Add this to your existing CSS file 

.container {
max-width: 500px;
margin: 0 auto;
padding: 20px;
border: 1px solid #ccc;
border-radius: 10px;
background-color: #f9f9f9;
}

h1 {
text-align: center;
}

label {
display: block;
margin-bottom: 8px;
}

input[type="text"],
input[type="password"],
input[type="submit"] {
width: 100%;
padding: 10px;
margin: 8px 0;
box-sizing: border-box;
}

input[type="submit"] {
background-color: #4CAF50;
color: white;
border: none;
border-radius: 5px;
}

.go-home {
display: block;
margin-top: 20px;
text-align: center;
color: #4CAF50;
text-decoration: none;
font-weight: bold;
}

.go-home:hover {
text-decoration: underline;
}
*/













