
.terms-container {
    justify-content: flex-start;
    padding-top: 60px;
    font-family: Arial, Helvetica, sans-serif;
}

.terms-title {
    font-size: 28px;
    color: #0d3572;
    margin: 20px 20px 10px 20px;
}

.terms-box {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 20px;
    height: 300px;
    overflow-y: auto;
    text-align: left;
    margin-bottom: 20px;
}

.terms-box h4 {
    font-size: 18px;
    margin-bottom: 10px;
}

.terms-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 15px;
}

.terms-acceptance {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    width: 100%;
}

.terms-acceptance input[type="checkbox"] {
    margin-right: 10px;
}

.navigation-buttons{
    display: flex;
    justify-content: space-evenly;
    width: 100%;
}

.btn-terms:disabled {
    background-color: #a0c7ff;
    cursor: not-allowed;
}

.btn-terms {
    background-color: #277aee;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-terms-return{
  background-color: #2172e3;
  cursor: not-allowed;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: 10px 20px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}