.register {
  gap: 40px;
}

.register h2 {
  font-size: 24px;
  font-weight: bold;
}

.register .register-large-text {
  font-size: 18px;
  font-weight: bold;
}

.register .register-text {
  font-size: 14px;
  font-weight: 400;
}

.register .register-small-text {
  font-size: 13px;
  font-weight: 400;
}

.register-left,
.register-left form {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.register-left form{
  padding: 0;
}

.underlined-input,
.underlined-select {
  border: none;
  border-bottom: 1px solid #000;
  border-radius: 0;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.underlined-input:focus,
.underlined-select:focus {
  outline: none;
  box-shadow: none;
  border-bottom: 1px solid #3d55e9;
}

.register-right {
  background-color: #fff;
  border: 1px solid #3d55e9;
  padding: 30px 15px;
  border-radius: 3px;
  height: fit-content;
}

.register .form-check {
  min-width: 109px;
}

.register .form-check-input {
  border-color: #000;
}

.register-left .product-list .title {
  background-color: #c0c0c0;
}

.register-left .product-list .item {
  background-color: #f8f8f8;
}

.register-left .product-list .item-group {
  background-color: #3d55e9;
  color: #fff;
  padding: 10px;
}

.register-left .product-list .item-image {
  width: 144px;
  height: 98px;
  flex-shrink: 0;
}

.register-left .product-list .item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.register-left .product-list .item-info p {
  margin-bottom: 4px;
}

.register-left .product-list button {
  border: none;
  background: transparent;
}

.register-left .product-list .item-info .item-delete {
  padding: 0;
  color: #233ac5;
}

.register-left .product-list .item-quantity {
  font-size: 13px;
  font-weight: 500;
  border-radius: 3px;
  border-color: #c0c0c0 !important;
}

.register-left .product-list .item-quantity button {
  border-color: #c0c0c0 !important;
}

.register .product-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.register-left .product-list ul li {
  padding: 10px;
}

.register-left .product-list .product-price {
  width: 130px;
  flex-shrink: 0;
}

.register-left .product-list .product-quantity {
  width: 108px;
  flex-shrink: 0;
}

.register .btn-primary {
  --bs-btn-bg: #3d55e9;
  --bs-btn-border-color: #3d55e9;
}

.register .btn-outline-primary {
  --bs-btn-color: #3d55e9;
  --bs-btn-border-color: #3d55e9;
  --bs-btn-hover-bg: #3d55e9;
  --bs-btn-hover-border-color: #3d55e9;
}

.register .product-list .form-check-input {
  border-color: #3961A0;
}

.register .modal-body {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .register h2 {
    font-size: 20px;
  }

  .register-left .product-list .item-image {
    height: 69px;
    width: 49px;
  }
}