/* Fonts */
@font-face {
    font-family: 'Gotham Pro Medium';
    src: url('fonts/gothampro_medium.ttf');
}

@font-face {
    font-family: 'Gotham Pro Bold';
    src: url('fonts/gothampro_bold.ttf');
}

body {
      margin: 0px;
      padding: 0px;
      font-size: 14px;
      font-family: "Gotham Pro Medium";
      display: flex;
      justify-content: center;
      align-items: center;
}

html, body {
  height: 100%;
  overflow: hidden;
}

.centered-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 16px;
  box-sizing: border-box;
  overflow: hidden;
}

h1 {
    font-size: 20px;
    font-family: "Gotham Pro Bold";
}

.logo {
  width: 250px;
}

button {
  border-radius: 10px;
  margin: 10px; 
  border: 0px;
  padding:10px 20px;
  font-size: 20px;
  font-family: "Gotham Pro Bold";
  background: linear-gradient(to right, #48b0e0, #2c62d6);
  color: #ffffff;
  box-shadow: 8px 8px 18px -4px rgba(0,0,0,0.75);
  -webkit-box-shadow: 8px 8px 18px -4px rgba(0,0,0,0.75);
  -moz-box-shadow: 8px 8px 18px -4px rgba(0,0,0,0.75);
}

input {
   border: none;
   border-bottom: 1px solid #000;
   outline: none; 
   font-size: 14px;
   padding: 10px;
   font-family: "Gotham Pro Medium";
}

.centered {
  padding: 20px;
  border: 1px solid #ссс;
  border-radius: 10px;
  max-width: 100%;
  box-sizing: border-box;
}