/* Importazione del font Montserrat da Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');

/* Stili comuni per tutti i pulsanti */
.btn {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  gap: 8px;
  
  font-family: 'Montserrat', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 130%;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  
  border-radius: 59px;
  cursor: pointer;
  text-decoration: none;
}

/* Stili per Button Primary */
.btn-primary {
  background: linear-gradient(90deg, #008380 0%, #0075A1 100%);
  color: #FFFFFF;
  border: none;
  width: 198px;
  height: 56px;
}

.btn-primary:hover {
  background: linear-gradient(90deg, #006664 0%, #006286 100%);
}

.btn-primary:focus {
  background: linear-gradient(90deg, #008380 0%, #0075A1 100%);
  border: 3px solid #014A65;
  outline: none;
}

.btn-primary:disabled {
  background: #EDF0F2;
  color: #8A9399;
  cursor: not-allowed;
}

/* Stili per Button Secondary */
.btn-secondary {
  background: transparent;
  border: 2px solid #0075A1;
  color: #0075A1;
  width: 224px;
  height: 56px;
  box-sizing: border-box;
}

.btn-secondary:hover {
  border: 2px solid #026287;
  color: #026287;
}

.btn-secondary:focus {
  border: 2px solid #014A65;
  outline: none;
}

.btn-secondary:disabled {
  background: #EDF0F2;
  color: #8A9399;
  border: none;
  cursor: not-allowed;
}
