@import url('https://fonts.googleapis.com/css?family=Roboto:400,300,600,400italic');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  /* font-family: "Roboto", Helvetica, Arial, sans-serif; */
  font-family: "Open Sans", Helvetica;
  font-weight: 100;
  font-size: 13.5px;
  line-height: 30px;
  color: #777;
  /* background: #4CAF50; */
  background: linear-gradient(rgba(0,0,0,0.7),rgba(0,0,0,0.7)),
  url("../img/background.jpg") no-repeat center center;
}

.container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

#my-form input[type="text"],
#my-form input[type="email"],
#my-form input[type="tel"],
#my-form input[type="url"],
#my-form textarea,
#my-form button[type="submit"] {
  /* font: 400 12px/16px "Roboto", Helvetica, Arial, sans-serif; */
  font: 400 12px/16px "Open Sans", Helvetica;
}

#my-form {
  /* background: #F9F9F9; */
  background: #EEEEEE;
  padding: 25px;
  margin: 10px 0;
  box-shadow: 0 0 20px 20px rgb(0 0 0 / 20%), 0 5px 5px 0 rgb(0 0 0 / 24%);
  border-radius: 10px;
  background-size: cover;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 96%;
  /* background: url("../img/bruh.jpg") no-repeat center center; */
}

#my-form h3 {
  display: block;
  font-size: 27px;
  font-weight: 300;
  margin-bottom: 10px;
}

#my-form h4 {
  margin: 5px 0 15px;
  display: block;
  font-size: 13px;
  font-weight: 400;
}

fieldset {
  border: medium none !important;
  margin: 0 0 10px;
  min-width: 100%;
  padding: 0;
  width: 100%;
}

#my-form input[type="text"],
#my-form input[type="email"],
#my-form input[type="tel"],
#my-form input[type="url"],
#my-form textarea {
  width: 100%;
  border: 1px solid #ccc;
  background: #FFF;
  margin: 0 0 5px;
  padding: 10px;
}

#my-form input[type="text"]:hover,
#my-form input[type="email"]:hover,
#my-form input[type="tel"]:hover,
#my-form input[type="url"]:hover,
#my-form textarea:hover {
  -webkit-transition: border-color 0.3s ease-in-out;
  -moz-transition: border-color 0.3s ease-in-out;
  transition: border-color 0.3s ease-in-out;
  border: 1px solid #4286f4;
}

#my-form textarea {
  height: 100px;
  max-width: 100%;
  resize: none;
}

#my-form button[type="submit"] {
  cursor: pointer;
  width: 100%;
  border: none;
  background: #4286f4;
  color: #FFF;
  /* margin: 5px 87px 5px; */
  padding: 15px;
  font-size: 15px;
}

#my-form button[type="submit"]:hover {
  background: #2263D2;
  -webkit-transition: background 0.3s ease-in-out;
  -moz-transition: background 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
}

#my-form button[type="submit"]:active {
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5);
}

.copyright {
  text-align: center;
  font-weight: bold;
}

#my-form input:focus,
#my-form textarea:focus {
  outline: 0;
  border: 1px solid #4286f4;
}

::-webkit-input-placeholder {
  color: #888;
}

:-moz-placeholder {
  color: #888;
}

::-moz-placeholder {
  color: #888;
}

:-ms-input-placeholder {
  color: #888;
}

.imean {
  cursor: pointer;
}
.logo {
	width: 100px;
	transition-duration: 0.5s;
	margin-top: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
/* 47.65% */
.logo:hover {
	transform: scale(1.05);
}
.log {
  margin-left: -14px;
}
.link {
  color: #4286f4;
}
.tos {
  margin-top: -22px;
}
.tos1 {
  cursor: pointer;
}
/* NAVIGATIA */

@media only screen and (max-width: 1500px) {
  body {
    background: #24272b;
  }
}

#status {
  max-width: 400px;
  width: 100%;
  padding: 5px;
  margin-top: -5px;
  /* margin: 0 auto;
  position: relative; */
  margin-right: auto;
  margin-left: auto;
  display: block;

  border-radius: 10px;
  text-align: center;
  font-size: 15px;
  font-family: "Open Sans", Helvetica;
}
#status.succes {
  background: #57BA50;
  color: white;
  font-weight: bold;
  /* position: absolute; */
  animation: status 10s ease forwards;
  margin-top: -35px;
  /* box-shadow: 0px 5px #33912C; */
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: "Open Sans", Helvetica;
  width: 96%;
}
#status.error {
  background: #FF310D;
  color: white;
  font-weight: bold;
  /* position: absolute; */
  animation: status 10s ease forwards;
  margin-top: -35px;
  box-shadow: 0px 10px #CD3618;
  display: block;
  margin-left: auto;
  margin-right: auto;
  font-family: "Open Sans", Helvetica;
  width: 96%;
}

@keyframes status {
  0%{
    opacity: 1;
    pointer-events: all;
  }
  90%{
    opacity: 1;
    pointer-events: all;
  }
  100%{
    opacity: 0;
    pointer-events: none;
  }
}

.float {
  float: right;
  color: #24272b;
  margin-left: 15px;
}

/* ===== Scrollbar CSS ===== */
  /* Firefox */
  * {
    scrollbar-width: auto;
    scrollbar-color: #4286f4 gray;
  }

  /* Chrome, Edge, and Safari */
  *::-webkit-scrollbar {
    width: 16px;
  }

  *::-webkit-scrollbar-track {
    background: gray;
  }

  *::-webkit-scrollbar-thumb {
    background-color: #4286f4;
    border-radius: 10px;
    border: 3px solid #4286f4;
  }

  ::-webkit-scrollbar {
	background: #000000;
	height: 5px;
	width: 5px;
  }
  
  ::-webkit-scrollbar-track {
	box-shadow: inset 0 0 2px #000000;
  }
  
  ::-webkit-scrollbar-thumb {
	background: #4286f4;
	border-radius: 2px;
  }
  
  ::-webkit-scrollbar-thumb:hover {
	background: #2263D2;
  }

  .aligning {
    margin-left: 10px;
  }

  @media only screen and (max-width: 1600px) {
    .aligning {
      margin-left: 15px;
    }
  }

  @media only screen and (max-width: 450px) {
    .aligning {
      margin-left: 28px;
    }
  }

  @media only screen and (max-width: 375px) {
    .aligning {
      margin-left: 29px;
    }
  }

  
  @media only screen and (max-width: 912px) {
    .aligning {
      margin-left: 14px;
    }
  }

  @media only screen and (max-width: 412px) {
    .aligning {
      margin-right: 0px;
    }
  }