@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,700");

/* RESET RULES
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --white: #afafaf;
    --black: #00000;
  --red: #e31b23;
/*  --bodyColor: #292a2b;*/
  --bodyColor: rgba(0,0,0,1.00);
  --borderFormEls: hsl(0, 0%, 10%);
  --bgFormEls: hsl(0, 0%, 86%);
  --bgFormElsFocus: hsl(0, 0%, 100%);
}

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  outline: none;
}

a {
  color: inherit;
}

input,
select,
textarea,
button {
  font-family: inherit;
  font-size: 100%;
}

button,
label {
  cursor: pointer;
}

select {
  appearance: none;
}

/* Remove native arrow on IE */
select::-ms-expand {
  display: none;
}

/*Remove dotted outline from selected option on Firefox*/
/*https://stackoverflow.com/questions/3773430/remove-outline-from-select-box-in-ff/18853002#18853002*/
/*We use !important to override the color set for the select on line 99*/
select:-moz-focusring {
  color: transparent !important;
  text-shadow: 0 0 0 var(--black);
}

textarea {
  resize: none;
}

ul {
  list-style: none;
}

body {
  font: 18px/1.5 "Open Sans", sans-serif;
  background: var(--bodyColor);
  color: var(--black);
  margin: 1.5rem 0;
}


.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  color: rgb(0, 0, 0);
}

.profile .signup-img {
  height: 290px;
  width: 800px;
}

.style-logo {
  max-width: 70%;
  top: 20px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  opacity: 100%;
}

.style-navbar{
  top: 0px;
  left:-100px;
  position: fixed;
  width: 150%;
  height: 110px;
}


.style-nav ul {
  list-style-type: none;
  margin-top: 30px;
}

.style-nav ul li a{
  text-decoration: none;
  color: #FFFFFF;
  text-align: center;
  display: block;
  padding: 8px;
}


.btn-nav {
  font-size: 24px;
  
}

.btn-nav:hover {
  text-decoration: underline;
}



.columnleft {
  font-size: 56px;
  color: rgb(255, 255, 255);
  justify-content: center;
}

.columnleft-single {
    margin-top: 0px;
    text-align: center;
}


.infoblurb {
    margin-top: 10px;
    margin-bottom: 10px;
    color: rgb(255, 255, 255);
    padding-left: 0;
    text-align: center;

}




.copyright {
padding-top: 10px;
font-size: 14px;
color: #ffffff;
text-align: center;
background-color: rgb(0, 0, 0);
}

.copyrightbox {
  background-color: rgb(0, 0, 0);
}


/* FORM ELEMENTS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form h1 {
  margin-bottom: 1.5rem;
}

.my-form li,
.my-form .grid > *:not(:last-child) {
  margin-bottom: 1.5rem;
}

.my-form select,
.my-form input,
.my-form textarea,
.my-form button {
  width: 100%;
/*  height 80%;*/
  line-height: 1.5;
  padding: 15px 10px;
  border: 1px solid var(--borderFormEls);
  color: var(--black);
  background: var(--bgFormEls);
  transition: background-color 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25),
  transform 0.3s cubic-bezier(0.57, 0.21, 0.69, 1.25);
}

.my-form textarea {
  height: 100px;
}

.my-form ::placeholder {
  color: inherit;
  /*Fix opacity issue on Firefox*/
  opacity: 1;
}

.my-form select:focus,
.my-form input:focus,
.my-form textarea:focus,
.my-form button:enabled:hover,
.my-form button:focus {
  background: var(--bgFormElsFocus)
  
}

.my-form select:focus,
.my-form input:focus,
.my-form textarea:focus {
  transform: scale(1.02);
}

.my-form *:required,
.my-form select {

  background-repeat: no-repeat;
  background-position: center right 12px;
  background-size: 15px 15px;
}

.my-form *:required {

    background-image: url(../images/star.png); 
    background-size: 10px 10px;
}

.my-form select {
    background-image: url(../images/star.png);  
    /* font-weight: 200px; */
}


/* FORM BTNS
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.my-form .required-msg {
  display: block;
  background: url(../images/star.png)
    no-repeat center left / 10px 10px;
  color: var(--white);
  padding-left: 20px;
  font-size: 15px;
}

.my-form .btn-grid {
    
  position: relative;
  overflow: hidden;
  transition: filter 0.2s;
  /* right -150px; */
  
}

.my-form button {
     
  margin-right: 5px;
  font-weight: bold;
}

.my-form button > * {
  display: inline-block;
  width: 100%;
  transition: transform 0.4s ease-in-out;
}

.my-form button .back {
  position: absolute;
  right: 50%;
  top: 50%;
  /* transform: translate(-110%, -50%); */
}

.smbox{
  margin: 20px 20px;
}


/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
footer {
  font-size: 1rem;
  text-align: right;
  backface-visibility: hidden;
}

footer a {
  text-decoration: none;
}

footer span {
  color: var(--red);
}


/* MQ
–––––––––––––––––––––––––––––––––––––––––––––––––– */
@media screen and (min-width: 768px) {



  .style-nav ul li {
    display: inline-block;
}

.style-nav ul {
    text-align: center;
}

.style-logo{
      max-width: 25%;
      float: left;
      position: fixed;
      opacity: 100%;
      padding-left: 20px;

  }

.style-nav {
    position: fixed;
    right: 0;
    top: 30px;
    margin-top: -40px;
}

.style-navbar{
  background-color: rgba(0,0,0,1.00);
  top: 0px;
  left:-100px;
  position: fixed;
  width: 150%;
  height: 110px;
}

.btn-nav {
  margin-right: 40px;
}



  .my-form .grid {
    display: grid;
    grid-gap: 1.5rem;
  }

  .my-form .grid-2 {
    grid-template-columns: 1fr 1fr;
  }

  .my-form .grid-3 {
    grid-template-columns: auto auto auto;
    align-items: center;
  }

  .my-form .grid > *:not(:last-child) {
    margin-bottom: 0;
  }

  .my-form .required-msg {
    display: block;
    
  }

  .btn-nav {
    margin-right: 40px;
  }
    
    .my-form .btn-grid {
        right: -185px;
    }

    .columnleft-single {
    margin-top: 20px;
    text-align: center;
}
    
}

@media screen and (min-width: 1200px) {

.style-nav ul li {
    display: inline-block;
}

.style-nav ul {
    text-align: center;
}

.style-logo{
      max-width: 15%;
      float: left;
      position: fixed;
      opacity: 100%;
      padding-left: 20px;

  }

.style-nav {
    position: fixed;
    right: 0;
    top: 30px;
    margin-top: -40px;
}

.style-navbar{
  background-color: rgba(0,0,0,1.00);
  top: 0px;
  left:-100px;
  position: fixed;
  width: 150%;
  height: 110px;
}

.btn-nav {
  margin-right: 40px;
}
    
.my-form .btn-grid {
    right: -185px;
}
    
/* .columnleft-singleline {
    margin-top: 20px;
    text-align: center;
} */

}
