/*=========================================
    PROYECTO AJAX - JQUERY
    Archivo: estilos.css
==========================================*/

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body{
    background:linear-gradient(135deg,#ffeaf4,#fff5fa);
}

/* CONTENEDOR */
.contenedor{
    width:90%;
    max-width:1100px;
    margin:30px auto;
}

/* TITULOS */
h1{
    text-align:center;
    color:#d63384;
    margin-bottom:30px;
    font-size:35px;
}

h2{
    color:#e83e8c;
    margin-bottom:20px;
}

/* CAJAS */
.caja{
    background:#ffffff;
    margin-bottom:25px;
    padding:25px;
    border-radius:18px;
    box-shadow:0px 10px 25px rgba(214,51,132,.15);
    border:2px solid #ffd6e8;
}

/* FORMULARIO */
label{
    display:block;
    margin-top:15px;
    font-weight:bold;
    color:#c2185b;
}

input{
    width:100%;
    padding:12px;
    margin-top:5px;
    border:2px solid #ffc2d9;
    border-radius:10px;
    font-size:15px;
    transition:.3s;
}

input:focus{
    outline:none;
    border:2px solid #ff69b4;
    background:#fff0f7;
    box-shadow:0 0 8px rgba(255,105,180,.3);
}

/* BOTONES */
button{
    margin-top:20px;
    padding:12px 22px;
    border:none;
    border-radius:30px;
    cursor:pointer;
    color:white;
    font-size:15px;
    margin-right:10px;
    transition:.3s;
    font-weight:bold;
}

/* Colores individuales */
#btnValidar{
    background:#ff66a3;
}

#btnGuardar{
    background:#ff4f8b;
}

#btnConsultar{
    background:#d63384;
}

#btnLoad{
    background:#b54fc8;
}

button:hover{
    transform:translateY(-3px);
    box-shadow:0 8px 18px rgba(214,51,132,.3);
}

/* RESPUESTA AJAX */
#respuesta{
    background:#fff0f8;
    border:2px solid #ffb6d5;
    padding:15px;
    min-height:40px;
    border-radius:12px;
}

#datosServidor{
    margin-top:15px;
    background:#fff7fb;
    padding:15px;
    border-radius:12px;
    border:2px solid #f8b7d4;
}

#contenidoLoad{
    margin-top:15px;
    background:#fff3fa;
    padding:15px;
    border-radius:12px;
    border:2px solid #f5a8cb;
}

/* BUSCADOR */
#buscar{
    margin-bottom:20px;
}

/* TABLA */
table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border-radius:10px;
}

table th{
    background:#d63384;
    color:white;
    padding:12px;
}

table td{
    padding:12px;
    border:1px solid #ffd3e5;
}

table tr:nth-child(even){
    background:#fff7fb;
}

table tr:hover{
    background:#ffe1ef;
}

/* MENSAJES */
.error{
    color:#dc3545;
    font-size:13px;
    margin-top:5px;
}

.correcto{
    border:2px solid #28a745 !important;
}

.incorrecto{
    border:2px solid #dc3545 !important;
}

/* RESPONSIVE */
@media(max-width:700px){

button{
    width:100%;
    margin-bottom:10px;
}

h1{
    font-size:28px;
}

}