body {
  font-family: "Raleway", sans-serif;
  margin: 0 auto !important;
    width: 1000px;
}
.formulario {
	background-color:#f8f7f0;
	padding:40px;
	float: left;
}
h1 {
	font-weight:100;
}
.legend-perfil {
	width: 50%;
	float:left;
}
.formulario legend {
  font-size: 1rem !important;
  width: 50%;
}
fieldset {
	margin-top:30px;
}

legend.legend-datos-contacto {
font-weight: 700;
  width: 100%;
  margin-bottom: 20px;
}
.fieldset-datos-contacto label{
	width:50%;
	padding-bottom:20px;
}
.fieldset-datos-contacto input {
	background-color:#928170;
	border-radius:4px;
	border:none;
	padding:4px;
	width:50%;
	float:right;
	color:#fff;
}
.fieldset-cuota input {
	background-color:#928170;
	border-radius:4px;
	border:none;
	color:#fff;
}
textarea {
	margin-top: 30px;
	background-color: #928170;
	border: none;
	width: 100%;
	max-width: 600px;
	border-radius: 6px;
	padding: 30px;
	color: #fff;
	display: block;
}
Select {
		  background-color: #928170;
		    border: none;
		    padding: 10px;
		    border-radius: 6px;
		    color: #fff;
			width:50%;
			float:right;
}

.centered-select {
    background-color: #928170;
		    border: none;
		    padding: 10px;
		    border-radius: 6px;
		    color: #fff;
			width:50%;
			float:none;
}

.selected-option {
            cursor: pointer;
            padding: 5px;
            margin: 3px;
            display: inline-block;
            background-color: #928170;
			color: #fff;
            border-radius: 3px;
        }
        .selected-option:hover {
            background-color: #928170;
        }

.observa {
	clear: both;
	padding-top: 10px;
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.label-observaciones {
	padding-top:20px;
}
.textarea-observaciones {
	margin-top:0;
}
button {
  background-color: #928170;
  border: none;
  padding: 6px 25px;
  color: #fff;
  margin-top: 20px;
  display: block;
  margin-left: auto;
  margin-right: 0;
}
button:hover {
	color: #928170;
	BAckground-color:#fff;
	transition:0.7s;
}
.preferencias-literarias {
	padding-top: 20px;
}

.page-footer {
    background-color: #928170; /* Este es el color brown lighten-1 */
}

.footer .container {
    text-align: center;
    color: white; /* Asegúrate de que el color del texto sea visible */
}

/* File Input
   ========================================================================== */
.file-field {
  position: relative;
}

.file-field .file-path-wrapper {
  overflow: hidden;
  padding-left: 10px;
}

.file-field input.file-path {
  width: 100%;
}

.file-field .btn, .file-field .btn-large, .file-field .btn-small {
  float: left;
  height: 3rem;
  line-height: 3rem;
}

.file-field span {
  cursor: pointer;
}

.file-field input[type=file] {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 20px;
  cursor: pointer;
  opacity: 0;
  filter: alpha(opacity=0);
}

.file-field input[type=file]::-webkit-file-upload-button {
  display: none;
}

/* Consultas de medios para dispositivos móviles */
@media (max-width: 768px) {
  body {
    width: 100%;
    margin: 0;
    padding: 0 10px;
  }

  .formulario {
    padding: 20px;
  }

  .fieldset-datos-contacto input,
  textarea,
  select,
  button {
    width: 100%;
    float: none;
    margin-bottom: 10px;
  }

  .fieldset-datos-contacto label {
    width: 100%;
    float: none;
  }

  button {
    margin-top: 20px;
    float: none;
    width: 100%;
    box-sizing: border-box;
  }

  .observa {
    padding-top: 10px;
  }

  .label-observaciones {
    padding-top: 10px;
  }

  .textarea-observaciones {
    margin-top: 0;
  }
}