* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: url("../img/puente_d.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.card {
    background: #fff;
    padding: 20px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 500px;
    text-align: center;
}

.card h2 {
    margin-bottom: 20px;
}

.card form {
    display: flex;
    flex-direction: column;
}

.card form .input-group {
    margin-bottom: 15px;
}

.card form label {
    margin: 5px 0;
    text-align: left;
    display: block;
    color: #333;
}

.card select, .card input, .card textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.card textarea {
    resize: vertical;
    height: 120px;
}

.btn {
    svg {
        margin-right: 10px;
    }
}

.submit-button, .file-picker-button {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.card form button:hover {
    background-color: #0056b3;
}

.alert {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border-radius: .25rem;
}

.info {
    margin: 20px 0;
    text-align: left;
}

svg {
    height: 1rem;
    fill: white;
}

.file-picker-button {
    background-color: grey !important;
}

.file-item {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 10px;
}
.file-icon {
    margin-right: 10px;
}
.file-description {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.delete-btn {
    background-color: #dc3545 !important;
    color: white;
    border: none;
    padding: 5px;
    border-radius: 3px;
    cursor: pointer;
    line-height: 0;
    svg {
        width: 1rem;
    }
}

.logout-button {
    position: absolute;
    top: 10px;
    right: 10%;
    background-color: #dc3545;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}

.home-button {
    position: absolute;
    top: 10px;
    left: 10%;
    background-color: #3085d6;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
}