body {
    margin: 0;
    padding: 0;
    font-family: system-ui;
    background: #f5f5f5;
}

html {
    scroll-behavior: smooth;
}

header {
    background-color: #2a303a;
    position: fixed;
    width: 100%;
    z-index: 1000;
    top: 0;
    margin-bottom: 0px;
}

header .contenido-header {
    max-width: 90%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 1px;
}

header .contenido-header .logo {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .contenido-header img {
    width: 4rem;
    height: 4rem;
    border-radius: 25%;
}

header .contenido-header h1 {
    color: #fff;
    padding: 10px;
    align-items: center;
    font-size: 15px;
}

header .contenido-header nav ul {
    list-style: none;
    display: flex;
    justify-content: end;
}

header .contenido-header nav ul li a {
    color: white;
    text-decoration: none;
    margin: 0 12px;
    font-weight: 400;
    transition: color 0.3s;
}

header .contenido-header nav ul a:hover {
    color: #4682B4;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    z-index: 1100;
}

/*===============================================================================================================================*/

.form-container {
    padding-top: 260px;
    max-width: 800px;
    margin: auto;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.form-container {
    margin-top: 150px;

}

h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 15px;
}

label {
    font-weight: bold;
    margin-bottom: 5px;
}

input,
textarea,
select {
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 14px;
}

textarea {
    resize: vertical;
    min-height: 80px;
}

.form-actions {
    text-align: center;
    margin-top: 20px;
}

.form-actions button {
    background: #004080;
    color: #fff;
    padding: 10px 20px;
    margin: 5px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.form-actions button:hover {
    background: #0066cc;
}