body{
    font-family: Arial;
    background: #f2f2f2;
}

.container{
    width: 90%;
    margin: auto;
    background: white;
    padding: 30px;
    margin-top: 30px;
    border-radius: 10px;
}

h1{
    text-align: center;
    color: #0018a8;
    letter-spacing: 5px;
}

.icono{
    text-align: center;
    font-size: 100px;
}

form{
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.form-group{
    display: flex;
    flex-direction: column;
    width: 300px;
}

label{
    font-weight: bold;
    margin-bottom: 10px;
    color: #0018a8;
}

input, select{
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button{
    height: 50px;
    margin-top: 30px;
    padding: 0 30px;
    background: #0018a8;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

table{
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

table th{
    background: #004aad;
    color: white;
    padding: 15px;
}

table td{
    padding: 12px;
    border-bottom: 1px solid #ddd;
}

.success{
    background: #4CAF50;
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 30px;
    font-size: 24px;
    border-radius: 5px;
}

.btn-regresar{
    display: inline-block;
    padding: 10px 20px;
    background: #0018a8;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
 
.multa-pendiente{
    background: #ffe5e5;
    color: #ff9090;
}

.multa-pendiente td{
    border-bottom: 1px solid #f5b5b5;
}

.multa-pendiente:hover{
    background: #ffd6d6;
    transition: 0.3s;
}  