body {
    font-family: Arial, sans-serif;
    background: #e6f2ff;
  }

h2 {
    text-align: center;
    font-weight: bolder;
    font-size: 34px;
    margin-bottom: 10px;
  }
    
.form {
    padding: 20px;
    background: #ffecc9;
  }
.registration-form {
    background: #fff;
    max-width: 90%;
    margin: auto;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  }

.form-group {
    margin-bottom: 15px;
  }

label {
    display: block;
    margin-bottom: 5px;
    font-size: 18px;
    font-weight: bold;
  }

input, select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
  }

.register-btn {
    background: #ffa500;
    color: white;
    border: none;
    width: 100%;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 10px;
    transition: all ease 0.3s;
  }
.register-btn:hover {
    background: #08a52d;
    font-size: 17px;
  }