html {
    background-color:#f5f5f5;
    height: 100%;
    width: 100%;
  }
  body {
    margin: 0;
    padding: 0; 
    height:100% ;
    display: grid; /* Enable grid layout */
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    background-image: url('../pics/signpic.jpg');
    background-size:cover; /* Ensure the image covers the entire viewport */
    background-position: center; /* Center the image */
    background-repeat: no-repeat; /* Prevent the image from repeating */
    height: 100vh;
    
  }
  .top-bar {
    color: black;
    display: flex;
    padding: 0px 0px;
    justify-content: center; 
    align-items: center; 
    position: fixed; 
    top: 0; 
    left: 0; 
    right: 0; 
    margin: 0; 
    z-index: 3;
  }
  
  .brand-name {
    margin-right: 50px; 
    margin-left: 15px; 
    margin-top: 30px;
    font-size: 60px; 
    font-family: 'Bodoni Moda'; 
    text-shadow: #f5f5f5;
  }
  a.brand-name {
    text-decoration: none; /* Removes underline */
    color: inherit;        /* Inherits the color from parent element */
  }
  
.left-section {
  background-color: lightblue;
  
  box-sizing: border-box; /* Include padding in width calculation */
  font-family: "Roboto Flex";
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 40%;
  margin-top: 25%;
  margin-bottom: 35%;
}

.right-section {
  background-color: rgb(209, 241, 252);
  margin-bottom: 35%;
  
  box-sizing: border-box; /* Include padding in width calculation */
  font-family: "Roboto Flex";
  display: flex;
  align-items: top;
  justify-content: center;
  margin-right: 40%;
  margin-top: 25%;
}
.h1 {
  background-color: #f5f5f5;
}
.form-container {
  border: 1px solid #ccc;
  padding: 40px;
  padding-left: 18px;
  width: 300px;
  background-color: #fff;
  padding-top: 20px;
  align-items: top; 
  justify-content: center;
  width: 100%;    
  font-family: "Roboto Flex";
}

/* Title styling */
.form-container h2 {
  font-size: 1.5em;
  text-align: center;
  font-weight: 600;
  font-family: "Roboto Flex";
}   

/* Input fields styling */
.form-container input[type="text"],
.form-container input[type="email"],
.form-container input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #ccc;
  background-color: #f9f9f9;
}

/* Button styling */
.form-container button {
  width: 50%;
  padding: 10px;
  margin-left: 113px;
  margin-right: 20px;
  background-color: rgb(58, 56, 56);
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 20px;
  font-weight: bold;
}

.form-container button:hover {
  background-color: black;
}

/* Small link for extra navigation */
.form-container .small-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 0.9em;
  color: black;
  margin-left: 25px;
  text-decoration: none;
}
.form-container .small-link:hover {
  text-decoration: underline;
}

