/* Checkout Box */ .checkout { border: 2px solid #7C00FE; border-radius: 15px; padding: 20px; background: #fff; box-shadow: 0 8px 20px rgba(0,0,0,.12); } /* Champs */ .checkout input, .checkout select, .checkout textarea { border: 2px solid #7C00FE !important; border-radius: 10px !important; padding: 12px !important; transition: .3s; } .checkout input:focus, .checkout select:focus, .checkout textarea:focus { border-color: #5b00b8 !important; box-shadow: 0 0 8px rgba(124,0,254,.3); } /* Bouton Commander */ .checkout button, .checkout .btn-primary { background: #7C00FE !important; border: none !important; border-radius: 12px !important; color: #fff !important; font-size: 18px; font-weight: bold; padding: 15px; transition: .3s; } .checkout button:hover, .checkout .btn-primary:hover { background: #5b00b8 !important; }