/* Reset default margins and set font */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
  }
  
  body {
    background: #f0f2f5;
    height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* Logo in top-right */
  header {
    position: absolute;
    top: 20px;
    right: 30px;
  }
  
  .logo {
    width: 80px;
    height: auto;
  }
  
  /* Centered content */
  .login-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .slogan {
    font-size: 18px;
    color: #555;
    margin-bottom: 30px;
  }
  
  /* Form styles */
  .login-form {
    display: flex;
    flex-direction: column;
    width: 300px;
  }
  
  .login-form input {
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  
  
  .login-btn {
    background-color: #f27014;
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    align-self: center;
  }
  
  .login-btn:hover {
    background-color: #e96f17;
  }
  
  
  .or-divider {
    text-align: center;
    margin: 5px 0;
    color: #050404;
    font-weight: bold;
  }
  
  /* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f0f2f5;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
  }
  
  /* Main container */
  .register-container {
    background-color: white;
    padding: 40px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    width: 80%;
    max-width: 900px;
    border-radius: 10px;
  }
  
  /* Form Heading */
  h1 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
    color: #e96f17;
    
  }
  
  /* Form structure */
  .register-form {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  /* Columns styling */
  .form-column {
    flex: 1;
    padding: 10px;
  }
  
  /* List inside columns */
  .form-column ul {
    list-style: none;
    margin-bottom: 20px;
  }
  
  .form-column li {
    margin-bottom: 15px;
  }
  
  /* Input fields styling */
  input, select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
  }
  
  input[type="date"], input[type="password"], select {
    font-size: 16px;
  }
  
  /* Register button */
  .register-btn {
    background-color: #f27014;
    color: white;
    padding: 15px 25px;
    font-size: 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    margin-bottom: 10px;
    align-self: center;
  }
  
  .register-btn:hover {
    background-color: #e96f17;
  }
  .register-btn {
    text-decoration: none; /* Removes underline */
  }

  .brabus {
    font-size: 48px;
    color: #000000; 
   
  }
  .base {
    
    font-size: 48px;
    color: #000000; /* Base fill color */
    font-weight: bold;
    text-shadow: 
      -1px -1px 0 #0b3d3b,  
       1px -1px 0 #0b3d3b,
      -1px  1px 0 #0b3d3b,
       1px  1px 0 #0b3d3b; /* Dark blue-green outline */
  }

  .be {
    font-size: 20px;
    color: #000000; 
   
  }
  .brilliant {
    font-size: 20px;
    color: #000000; /* Base fill color */
    font-weight: bold;
    text-shadow: 
      -1px -1px 0 #0b3d3b,  
       1px -1px 0 #0b3d3b,
      -1px  1px 0 #0b3d3b,
       1px  1px 0 #0b3d3b; /* Dark blue-green outline */
  }


  
  