/* frontend/static/styles/register-styles.css */

.logo img {
    max-height: 80px; /* Ensure the logo doesn't exceed the header height */
    margin-bottom: -14px;
  }
  
  /* General styles */
  body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 30px;
    background-color: #f4f4f4;
  }

.main{
  padding:50px;
  margin-top: 80px;
}
  .login {
    padding: 20px;
    text-align: center;
    font-family: Arial, sans-serif;
    max-width: 500px;
    margin: 0 auto;
    background-color: #f9f9f9;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
input {
  width: 100%;
  padding-block: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  }
  
  button {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #375db8;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1em;
    margin-top: 20px;
  }
  
    
  .register-container {
    position: relative;
    width: 800px;
    margin-right: 20px; /* Space between the quote container and the summary */
  }
  
  .register-main {
    display: flex; /* Use flexbox to position the main content and summary side by side */
    justify-content: center;
    padding: 20px;
    margin-top: 80px;
    align-items: flex-start; /* Align items at the start to avoid height matching */
  }
  .register-details {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #fff;
    border: 1px solid #ccc;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  }
  
  
    h2 {
  text-align: center;
  margin-bottom: 20px;
  }
  form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 20px;
  }
  label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  }
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select {
  width: 100%;
  padding-block: 10px;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  }
  
  .full-width {
  grid-column: 1 / span 2;
  }
.center {
  margin: 0 auto;
  text-align:center;
}

.model {
  display: none; 
  position: fixed; 
  z-index: 1000; 
  left: 0;
  top: 0;
  width: 100%; 
  height: 100%; 
  overflow: hidden; 
  background-color: rgb(0,0,0); 
  background-color: rgba(0,0,0,0.4); 
}

.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}


.model-content {
  margin: 15% auto;
  padding: 30px;
  text-align: center;
  font-family: Arial, sans-serif;
  width: 400px;
  background-color: #ffffff;
  border: 1px solid #ccc;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}