.error {
  border: 2px solid red;
  padding: 10px;
  margin-bottom: 20px;
}

.success {
  border: 2px solid green;
  padding: 10px;
  margin-bottom: 20px;
}

label {
  display: block;
  margin-bottom: 10px;
  font-weight: bold;
}

input[type="date"],
input[type="number"],select {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  box-sizing: border-box;
  border: 1px solid #634636;
  font-size: 18px;
  font-family: 'Outfit';
  color: #634636;
}

input[type="submit"], button, [type="button"] {
  	padding: 10px 20px;
    cursor: pointer;
    color: #F4F5F1;
    background: #634636;
    border: 1px solid #634636;
    font-family: 'Outfit';
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.campo_select select {
    width: 220px;
	border-radius: 50px;
    padding: 8px 10px;
    color: #ffffff;
    background: #000000;
}

.campo_select {
    text-align: center;
    margin-bottom: 25px;
}

.menstrual-cycle-campos {
    display: flex;
    justify-content: space-between;
	gap: 15px;
	margin-bottom: 25px;
}
.ciclos_input {
    width: 100%;
}
.ciclos_submit {
    text-align: center;
}
h3 {
    font-family: 'Outfit';
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #634636;
}

/*Responsive*/
@media screen and (max-width: 960px) {
    .menstrual-cycle-campos {
        flex-direction: column;
    }
}