body {
    font-family: var( --font-family);
    background: var(--primary-bg);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
  }
  
  .register-box {
    background: var(--card-bg);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #333;
    width: 90%;
    max-width: 500px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  h2{
    margin: 10px auto;
    font-size: 1.1rem;
  }

  form{
    width: 90%;
  }
  
  .app-logo {
    width: 80px;
    
  }

  .divisions{
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    margin-bottom: 15px;
  }
  
  .input-group {
    text-align: left;
    margin-bottom: 15px;
  }
  
  label {
    font-size: 14px;
    display: block;
    margin-bottom: 5px;
  }
  
  input, select {
    width: 100%;
    padding: 5px 10px;
    border-radius: 3px;
    border: none;
    outline: none;
    background: #ececec;
    color: #2c2a2a;
  }
  
  input:focus, select:focus {
    border: 1px solid #00bcd4;
  }
  
  button {
    background: #00bcd4;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    color: #fff;
    width: 100%;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
  }
  
  button:hover {
    background: #0097a7;
  }
  
  .row-inline {
    display: flex;
    gap: 30px;
  }
  
  .half {
    flex: 1;
  }
  
  small {
    display: block;
    margin-top: 15px;
    color: #aaa;
  }
  
  a {
    color: #00bcd4;
    text-decoration: none;
  }
  
  @media screen and (max-width:500px){
    .divisions{
      flex-direction: column;
      
    }

    .divisions div{
      width: 90%;
      margin-bottom: 10px;
    }
  }