/* Estilos generales del formulario */
.checkout-form {
max-width: 600px;
margin: 0 auto;
}
/* Estilos para los campos de entrada */
.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form select {
width: 100%;
padding: 10px;
margin-bottom: 20px;
border: 1px solid #ccc;
border-radius: 5px;
box-sizing: border-box;
}
/* Estilos para las etiquetas */
.checkout-form label {
display: block;
margin-bottom: 5px;
}
/* Estilos para los botones */
.checkout-form input[type="submit"] {
background-color: #007bff;
color: #fff;
padding: 10px 20px;
border: none;
border-radius: 5px;
cursor: pointer;
}
.checkout-form input[type="submit"]:hover {
background-color: #0056b3;
}
/* Estilos para mensajes de error */
.checkout-form .error-message {
color: red;
margin-top: 5px;
}
/* Estilos para el resumen del pedido */
.order-summary {
border: 1px solid #ccc;
border-radius: 5px;
padding: 20px;
margin-top: 20px;
}
.order-summary h2 {
margin-top: 0;
}
.order-summary table {
width: 100%;
border-collapse: collapse;
}
.order-summary th, .order-summary td {
padding: 10px;
border-bottom: 1px solid #ccc;
}
.order-summary th {
text-align: left;
}
/* Estilos para el botón de proceder al pago */
.proceed-to-payment {
text-align: right;
margin-top: 20px;
}