/* Columns */

.container{
  display: flex;
}

.left-column {
    flex-direction: column;
    width: 65%;
    position: relative;
  }
   
  .right-column {
      flex-direction: column;
    width: 35%;
    margin-left: 10px;
  }

  .left-column img {
    
    position: relative;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
  }
   
  .left-column img.active {
    opacity: 1;
  }

  .product-description {
    border-bottom: 1px solid #E1E8EE;
    margin-bottom: 20px;
  }
  .product-description span {
    font-size: 12px;
    color: #358ED7;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
  }
  .product-description h1 {
    font-weight: 300;
    font-size: 52px;
    color: #9da8b3;
    letter-spacing: -2px;
  }
  .product-description p {
    font-size: 16px;
    font-weight: 300;
    color: #86939E;
    line-height: 24px;
  }

  /* Product Price */
.product-price {
    display: flex;
    align-items: center;
  }
   
  .product-price span {
    font-size: 26px;
    font-weight: 300;
    color: #b2bbc9;
    margin-right: 20px;
  }
   
  .cart-btn {
    display: inline-block;
    background-color: #7DC855;
    border-radius: 6px;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 30px;
    transition: all .5s;
  }
  .cart-btn:hover {
    background-color: #64af3d;
  }

  .error_message{
    color:crimson;
  }

  form {
    display: flex;
    flex-direction: row;
    margin: 0 auto;
    align-items: center;
    }

    form .form__label{
        margin-bottom: 5px;
        font-size: xx-large;
        color: rgb(255, 255, 255);
    }

    form .form__input{
        margin-bottom: 10px;
        margin-right: 10px;
        width: fit-content;
        width: 30%;
        height: 20px;
        border-radius: 4px;
        font-size: x-large;
        border: 6px #273b39 solid;
    }

    form .form__input:focus{
        border-color: rgb(30, 31, 39);
        border-radius: 5px;
    }