
 /* LOGIN FORM */
 /* LOGIN FORM */
#vine-loginform span.vine-error {
  display: block;
  background: #ffd73b;
  padding: 10px;
  width: 100%;
  font-weight: bold;
  /* color: white; */
}

#vine-loginform input:focus {
  border: none!important;
}

#vine-loginform input#submitbtn {
  cursor: pointer;
  border: none;
  padding: 15px 60px;
  border-radius: 25px;
  background: #1161ee;
  color: white;
}

#vine-loginform input#submitbtn:hover {
  background: #1351aa;

  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#vine-loginform .site-inner {
  width: 100%;
  margin: auto;
  position: relative;
  padding-bottom: 40px;
}

#vine-loginform {
  width: 100%;
  position: relative;
  padding: 90px 70px 50px 70px;
  background: linear-gradient(60deg,#3d7afd 0,#4c6df9 50%,#4a68ef 50%,#5b5ef4 100%);
}

#vine-loginform .form-wrapper {
  margin: auto;
  max-width: 525px;
}

#vine-loginform label.tab {
  color: #fff;
  font-size: 22px;
  margin-right: 15px;
  padding-bottom: 5px;
  margin: 0 15px 10px 0;
  display: inline-block;
  /* border: solid; */
}

#vine-loginform label.my-username, .my-password {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

#vine-loginform input[type=text],
#vine-loginform input[type=password] {
  color: #fff;
  border: 2px solid transparent !important;

  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

#vine-loginform input[type=text]:hover,
#vine-loginform input[type=password]:hover {
  border: 2px solid #1161ee !important;
}

#vine-loginform input.text {
  border: none;
  padding: 15px 20px;
  background: rgba(255,255,255,.1);
  width: 100%;
  color: #fff;
  display: block;
}

#vine-loginform input[type=text]:focus,
#vine-loginform input[type=password]:focus {
  background: rgba(255,255,255,1);
  color: #1161ee;
  font-size: 120%;
  font-weight: bold;
}

/* CUSTOM CHECKBOX */
#vine-loginform .vine-checkwrap {
  cursor: pointer;

  display: block;
  position: relative;

  padding-left: 25px;

  color: white;
  font-size: 110%;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
#vine-loginform .vine-checkwrap input {
  cursor: pointer;

  position: absolute;

  opacity: 0;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
#vine-loginform .vine-checkwrap .vine-checkmark {
  position: absolute;

  top: 0;
  left: 0;
  height: 20px;
  width: 20px;

  background-color: white;

  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}

/* On mouse-over, add a grey background color */
#vine-loginform .vine-checkwrap:hover .vine-checkmark {
  background-color: #ddd;
}

/* When the checkbox is checked, add a blue background */
#vine-loginform .vine-checkwrap input[type=checkbox]:checked ~ .vine-checkmark {
  background-color: white;
}

/* Create the checkmark/indicator (hidden when not checked) */
#vine-loginform .vine-checkmark:after {
  content: '';
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
#vine-loginform .vine-checkwrap input:checked ~ .vine-checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
#vine-loginform .vine-checkwrap .vine-checkmark:after {
  left: 6px;
  top: 2px;

  width: 5px;
  height: 10px;

  border: solid #1161ee;
  border-width: 0 3px 3px 0;

  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* My Account Page Styling */
.vine-accountWrap {
  position: relative;

  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;

  width: 100%;
  padding: 70px 20px;

  background: linear-gradient(60deg,#ffd73b 0,#f7c937 50%,#edbe37 50%,#eab42d 100%);
}

.vine-accountWrap .vine-accountContainer {
  position: relative;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;

  max-width: 525px;

  text-align: center;
}

.vine-accountWrap .vine-accountButton.full {
  display: block;

  width: 100%;
  padding: 65px 50px;
  margin: 10px;

  background-color: rgba(10, 70, 225, 0.75);
  border-bottom-right-radius: 40px;

  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vine-accountWrap .vine-accountButton {
  display: block;

  width: calc(100% * (1/2) - 20px);
  padding: 65px 50px;
  margin: 10px;

  background-color: rgba(10, 70, 225, 0.75);
  border-bottom-right-radius: 40px;

  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vine-accountWrap .vine-accountButton * {
  color: white;
}

.vine-accountWrap .vine-accountButton:hover {
  background-color: rgba(10, 70, 225, 1);
  border-bottom-right-radius: 0%;
}

.vine-accountWrap .vine-accountButton:hover .fa-arrow-circle-o-right {
  margin-left: 40px;

  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vine-accountWrap .vine-accountButton:hover .fa-arrow-circle-left {
  margin-right: 40px;

  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vine-accountWrap .vine-accountButton:hover .fa-file-text {
  transform: rotateZ(20deg);

  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vine-accountWrap .vine-accountButton h2 {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 200%;
}

.vine-accountWrap .vine-accountButton h3 {
  font-size: 130%;
}

.fa-arrow-circle-o-right,
.fa-arrow-circle-left,
.fa-id-card,
.fa-table,
.fa-file-text {
  margin-top: 20px;
  font-size: 300% !important;
}

.vine-accountWrap .vine-accountButton:hover .fa-id-card {
  transform: rotateZ(360deg) scale(1.1);

  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.vine-accountWrap .vine-accountButton:hover .fa-table {
  transform: rotateZ(-360deg) scale(1.1);

  -webkit-transition: all 0.7s ease;
  -o-transition: all 0.7s ease;
  transition: all 0.7s ease;
}

.vine-accountExport {
  width: 100%;
}

.vine-accountExport-row {
  display: flex;

  margin-bottom: 20px;
  margin-left: 10px;

  flex-direction: row;
  justify-content: space-evenly;
}

.vine-account-export-button {
  cursor: pointer;

  width: auto;
  min-height: 40px;

  padding: 10px;

  text-align: left;
  padding-left: 50px;

  background-image: url(../images/icon-excel.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 5px;
  background-color: transparent;

  border: 1px solid #4285e5;
  border-radius: 10px;
  outline: none;

  color: #4285e5;

  font-weight: bold;

  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.vine-account-export-button:hover {
  transform: translateY(-5px);

  background-image: url(../images/icon-excel-table-over.png);

  border: 1px solid #4285e5;
  background-color: white;

  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media only screen and (max-width: 1220px) {
  #vine-loginform {
    padding: 30px 20px 30px 20px;
  }
}

@media only screen and (max-width: 768px) {
  .site-inner {
    padding: 5% 5% 5%!important;
  }
}
