/*==========ACCOUNT CREATION CSS===================*/

body {
      background: #f5f8ff;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    .register-container {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .register-card {
      background: #fff;
      border-radius: 12px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.1);
      padding: 10px;
      width: 100%;
      max-width: 900px;
    }
    .register-left {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      background: #DE3412;
      border-radius: 12px;
      padding: 30px;
    }
    .register-left img {
      max-width: 80%;
      height: auto;
    }
    .register-right h3 {
      font-weight: bold;
      margin-bottom: 10px;
      color:#DE3412;
    }
    .form-control, .form-select {
      border-radius: 4px;
      outline: 0px !important;
      border:1px solid #DE3412;
    }
    .form-control:focus, .form-select:focus {
      outline: 0px !important;
      box-shadow: none !important;
    }
    .btn-primary {
      width: 100%;
      border-radius: 8px;
      padding: 12px;
      font-size: 16px;
      background: #DE3412;
      border: none;
    }
    .btn-primary:hover {
      background: #DE3412;
    }
    .login-link {
      margin-top: 10px;
      text-align: center;
    }
    .login-link a {
      color: #fff;
      text-decoration: none;
      font-weight: 500;
    }
    .login-link a:hover {
      text-decoration: underline;
    }




