/* Plugin: academy-registration */
/* academy-register.css */

#summary-content {
  padding: 1em;
  background-color: #f7f7f7;
  border: 1px solid #ddd;
  margin-bottom: 1em;
  border-radius: 5px;
}

#summary-content p {
  margin: 0.5em 0;
}

.academy-feedback {
  padding: 0.5em;
  border-radius: 4px;
  font-weight: bold;
}

.academy-feedback.success {
  color: green;
}

.academy-feedback.error {
  color: red;
}

.review-hint {
    margin-top: 2em;
    padding: 1em;
    background-color: #f9f9f9;
    border-left: 4px solid #0073aa;
    font-size: 0.95em;
  }
  
  .confirmation-box {
    padding: 1.5em;
    border-radius: 6px;
    font-size: 1.1em;
    font-weight: 500;
    margin: 1.5em auto;
    max-width: 600px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
  }
  
  .confirmation-box.success {
    background: #e6f6eb;
    border: 1px solid #2ea664;
    color: #1e5631;
  }
  
  .confirmation-box.error {
    background: #fdecea;
    border: 1px solid #dc3545;
    color: #a71d2a;
  }

