* {
  margin: 0;
  padding: 0;
  outline: 0;
  box-sizing: border-box;
}

body {
  font-family: Roboto, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  min-height: 100vh;
  background-image: url(/site/imgs/degrade.svg);
  background-size: cover;
  background-position: 50%;
  background-repeat: no-repeat;
}

table {
  border-spacing: 0;
  width: 100%;
  background: #fff;
}
table tbody tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.0196078431);
}
table th,
table td {
  padding: 10px;
  border-bottom: 1px solid #ccc;
}
table input[type=checkbox] {
  transform: scale(1.3);
  cursor: pointer;
}
table tr.selected {
  background: rgba(63, 81, 181, 0.1215686275) !important;
  color: #3f51b5 !important;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-red {
  color: rgb(220, 38, 38);
}

.container {
  padding: 15px;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.main-header {
  display: flex;
  height: 56px;
  background: #00649c;
  align-items: center;
  color: #fff;
  position: relative;
  justify-content: center;
}
.main-header .menu {
  height: 48px;
  width: 48px;
  -o-object-fit: contain;
     object-fit: contain;
  cursor: pointer;
  position: absolute;
  left: 20px;
  display: none;
}
.main-header .logo {
  margin-right: 80px;
  display: block;
}
.main-header h2 {
  font-size: 20px;
  font-weight: 500;
}

.card {
  background: rgba(255, 255, 255, 0.7);
  box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.1) 0px 2px 4px -2px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  padding: 16px;
}
.card h2 {
  color: rgb(0, 100, 156);
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}

.main-logo {
  width: 150px;
  margin: 30px auto;
}

.main-form {
  text-align: center;
}
.main-form .form-inputs {
  display: flex;
  gap: 10px;
}
.main-form input {
  width: 100%;
  height: 56px;
  padding: 10px;
  border: 1px solid rgba(0, 0, 0, 0.13);
  border-radius: 8px;
  font-size: 16px;
  font-family: Roboto, sans-serif;
}
.main-form .inputCpfCnpj {
  margin-top: 10px;
}

.total {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid #ccc;
}
.total:first-of-type {
  border-top: 1px solid #ccc;
}

.alert {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.alert h3 {
  font-size: 18px;
}
.alert p {
  color: rgb(51, 65, 85);
}

button {
  background: rgb(0, 139, 210);
  height: 52px;
  width: 180px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
}
button:disabled {
  color: rgb(51, 65, 85);
  background: rgb(203, 213, 225);
  cursor: not-allowed;
}

.btnPay,
.btnBack {
  margin: 0 auto;
}

.info p {
  color: #00649c;
  font-size: 14px;
  font-weight: 500;
}
.info span {
  display: block;
  color: rgb(51, 65, 85);
  margin-top: 5px;
}

@media (max-width: 600px) {
  .form-inputs {
    display: flex;
    flex-direction: column;
  }
  .main-header {
    justify-content: flex-end;
    padding: 0 20px;
  }
  .main-header .menu {
    display: block;
  }
  .main-header .logo {
    display: none;
  }
}