
.contactos form{
    display: flex;
    flex-direction: column;
}

.contactos label{
    font-weight: bold;
    margin-top: 10px;
    color: #003566;
}

.contactos input,
.contactos textarea{
    padding: 12px;
    margin-top: 5px;
    border: 2px solid #00509d;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.contactos input:focus,
.contactos textarea:focus{
    border-color: #ffd60a;
    box-shadow: 0 0 10px rgba(255,214,10,0.8);
    outline: none;
}

.contactos textarea{
    resize: vertical;
    min-height: 120px;
}

.contactos button{
    margin-top: 15px;
    padding: 12px;
    background-color: #00509d;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

.contactos button:hover{
    background-color: #003566;
    transform: scale(1.05);
}

.contactos button:active{
    transform: scale(0.95);
}

.contactos{
    animation: aparecer 1s ease;
}

@keyframes aparecer{
    from{
        opacity: 0;
        transform: translateY(20px);
    }
    to{
        opacity: 1;
        transform: translateY(0);
    }
}