/* styles.css */
.sgnup {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #fff;
    background-image: url('assets/images/background/courses-two_bg.png'); /* Add decorative patterns */
    background-size: 1911px;
    background-repeat: no-repeat;
    background-position: top left, top right, bottom left, bottom right;
    margin-top: 100px;
  }
  
  .signup-container {
    text-align: center;
    width: 400px;
  }
  
  h1 {
    font-size: 45px;
    color: #333;
    margin-bottom: 30px;
  }
  
  .input-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  .input-group input,
  .input-group select {
    width: 95%;
    padding: 12px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
  }
  
  .input-group label {
    font-size: 14px;
    color: #555;
    margin-bottom: 5px;
    display: block;
  }
  
  .input-group input::placeholder {
    color: #ccc;
    font-style: italic;
  }
  
  .input-group input:focus,
  .input-group select:focus {
    border-color: #fbb03b;
    outline: none;
  }
  
  .login-text {
    font-size: 14px;
    color: #555;
    margin-bottom: 25px;
  }
  
  .login-text a {
    color: #007bff;
    text-decoration: none;
  }
  
  .login-text a:hover {
    text-decoration: underline;
  }
  