 
 
 
 body {
  background-image: url("pctures/enroll.jpg");
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
}
  
nav {
      background-color: #222;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 30px;
      box-shadow: 0 2px 5px gray;
    }

    nav img {
      width: 120px;
      height: auto;
    }

    nav ul {
      list-style: none;
      display: flex;
      gap: 25px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s;
    }
form
{
  background-color: #00bfff;
  box-shadow: #222 ;
    max-width: 1000px;
      margin: 50px auto;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 3px 10px black;
}
h1
{
  text-align: center;
  font-size: xx-large;
  color:white;

}
label{
  text-align: center;
  font-size: large;
  color:white;      
  box-sizing: content-box;
  margin: 15px 0 5px 0;

}

p{
  text-align: center;
}
    nav a:hover {
      color: #00bfff;
    }

    footer {
      background:gray;
      color: white;
      padding: 20px;
      text-align: center;
      margin-top: 40px;
      
    }

    footer a {
      color: yellow;
      text-decoration: none;
      margin: 0 10px;
      font-weight: bold;
    }

    footer a:hover {
      color: lightblue;
    }