html,
body {
    height: auto;
    min-height: 100vh;
}

body {
  display: flex;
  flex-direction: column !important;
  align-items: start;
}

header {
    height: 64px;
    background: #fff;
    border-bottom: solid 1px #ddd;
}

header .logo {
    width: 260px;
    height: auto;
}

footer {
    height: 160px;
    background: #eee;
}

main {
    flex-grow: 1 !important;
    padding-top: 1rem;
    padding-bottom: 6rem !important;
}

textarea {
    height: 100px;
}


.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

.form-signin .checkbox {
  font-weight: 400;
}

.form-signin .form-floating:focus-within {
  z-index: 2;
}

.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}


/*----------------- buttons ------------------*/

button, .btn, button.btn, a.btn {
    display: inline-block;
    margin: 0 0 8px 0;
    padding: 11px 42px;
    border: solid 1px transparent;
    border-radius: 28px;
    font-size: .9rem;
    font-weight: 400;
    text-align: center;
    cursor: pointer;
}

.btn:hover,
.btn:active {
    color: initial;
    background: initial;
    border-color: transparent;
}
    
.btn-lg {
    min-width: 280px;
    max-width: 100%;
    padding: 18px 48px !important;
    font-size: 1rem !important;
    letter-spacing: 1px;
    text-transform: uppercase !important;
    border-radius: 32px !important;
}
.btn-sm {
    min-width: 80px !important;
    padding: 10px 28px !important;
}

.btn-primary,
.btn-addtocart {
    border-color: #222;
    background-color: #222;
    font-weight: 700 !important;
    color: #fff !important;
    text-transform: uppercase;
}

.btn-primary:hover,
.btn-primary:active,
.btn-addtocart:hover,
.btn-addtocart:active{
    background-color: #000;
    color: #fff !important;
}

.cursor-pointer {
    cursor: pointer;
}