@charset "UTF-8";
/*

--- ORDER OF DECLARATIONS ---
POSITION (top/bottom/left/right)
DISPLAY (type/width/height/margin/padding/z-index)
COLORS (color, bg-color)
FONT (font-families, font-weight)
TEXT (text-align)
DECORATIONS
TRANSITIONS
--- ORDER OF DECLARATIONS ---

*/
/* GLOBAL VARIABLES */
/* line 2, app/assets/stylesheets/layouts/landing/_common.scss */
:root {
  --black: #07354B;
  --lightblack: #b4ced8;
  --flashgreen: #38F07D;
  --lightgrey: #F9F9F9;
  --pinkgrey: #F1E4E8;
  --amiko: 'Amiko', sans-serif;
  --comfortaa: 'Comfortaa', sans-serif;
  --bold: 700;
  --semibold: 600;
  --normal: 400;
  --light: 300;
  --responsiveenormous: calc(1rem + 5vw);
  --responsivebig: calc(1rem + 1.8vw);
  --responsivemiddle: calc(1rem + 1.5vw);
  --responsiveregular: calc(1rem + 1vw);
  --responsivenormal: calc(1rem + 0.8vw);
  --responsivesubtitle: calc(1rem + 0.45vw);
  --responsivelittle: calc(1rem + 0.3vw);
  --responsivemini: calc(0.5rem + 0.5vw);
}

@media all and (max-width: 900px) {
  /* line 28, app/assets/stylesheets/layouts/landing/_common.scss */
  :root {
    --responsiveenormous: calc(1rem + 8vw);
    --responsivebig: calc(1rem + 5vw);
    --responsivemiddle: calc(1rem + 4vw);
    --responsiveregular: calc(1rem + 2vw);
    --responsivenormal: calc(1rem + 1vw);
    --responsivelittle: calc(1rem + 0.5vw);
  }
}

/* line 38, app/assets/stylesheets/layouts/landing/_common.scss */
.d-flex {
  display: flex;
}

/* line 39, app/assets/stylesheets/layouts/landing/_common.scss */
.f-column {
  flex-direction: column;
}

/* line 40, app/assets/stylesheets/layouts/landing/_common.scss */
.a-i-center {
  align-items: center;
}

/* line 41, app/assets/stylesheets/layouts/landing/_common.scss */
.j-c-between {
  justify-content: space-between;
}

/* line 42, app/assets/stylesheets/layouts/landing/_common.scss */
.m-2 {
  margin: calc(1em / 3 * 2);
}

/* ----------    http://meyerweb.com/eric/tools/css/reset/  */
/* HTML RESET    v2.0 | 20110126                            */
/* ----------    License: none (public domain)              */
/* line 47, app/assets/stylesheets/layouts/landing/_common.scss */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
/* line 69, app/assets/stylesheets/layouts/landing/_common.scss */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* line 74, app/assets/stylesheets/layouts/landing/_common.scss */
body {
  line-height: 1;
}

/* line 75, app/assets/stylesheets/layouts/landing/_common.scss */
ol, ul {
  list-style: none;
}

/* line 76, app/assets/stylesheets/layouts/landing/_common.scss */
blockquote, q {
  quotes: none;
}

/* line 78, app/assets/stylesheets/layouts/landing/_common.scss */
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

/* line 84, app/assets/stylesheets/layouts/landing/_common.scss */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ANIMATIONS */
@keyframes pulse {
  0% {
    box-shadow: 0 0 4px 1.6px rgba(255, 10, 10, 0.3);
  }
  25% {
    box-shadow: 0 0 4px 0.4px rgba(255, 10, 10, 0.3);
  }
  50% {
    box-shadow: 0 0 4px 3px rgba(255, 10, 10, 0.3);
  }
  75% {
    box-shadow: 0 0 4px 1.6px rgba(255, 10, 10, 0.3);
  }
  100% {
    box-shadow: 0 0 4px 2.4px rgba(255, 10, 10, 0.3);
  }
}

@keyframes hide {
  0% {
    transform: translateY(0);
    transform: scale(1);
  }
  10% {
    transform: translateY(10px);
    transform: scale(1.1);
  }
  20% {
    transform: translateY(0);
    transform: scale(1);
  }
  100% {
    transform: translateY(-300vh);
  }
}

/* line 21, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.hide-animation {
  animation: hide 2s forwards;
}

/* NEWSFEED */
/* line 26, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
#newsfeed {
  position: fixed;
  top: 0;
  right: 0;
  width: 30vw;
  height: 100vh;
  background: white;
  box-shadow: 5px 0 19px rgba(50, 50, 50, 0.1);
  transition: .5s ease;
  z-index: 2500;
}

/* line 36, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
#newsfeed h5 {
  margin: 20px 30px 0 30px;
  overflow: hidden;
  font-size: var(--responsivenormal);
  font-weight: lighter;
  border-bottom: 1px solid var(--flashgreen);
  padding-bottom: 10px;
  margin-bottom: 20px;
}

/* line 47, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.hide-news {
  transition: 1s ease;
  width: 0 !important;
  overflow: initial !important;
  height: 100vh;
}

/* line 54, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
#toggle-newsfeed {
  position: absolute;
  top: calc(50vh - 100px);
  left: -80px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15px;
  height: 25px;
  min-width: 120px;
  transform: rotate(-90deg);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  font-size: 11px;
  text-transform: uppercase;
  text-align: center;
  background-color: white;
  box-shadow: 0px -20px 18px rgba(150, 150, 150, 0.1);
  cursor: pointer;
}

/* line 75, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.notification-alert {
  position: absolute;
  top: -4px;
  right: 4px;
  height: 10px;
  width: 10px;
  box-sizing: border-box;
  border-radius: 10px;
  background: #ff4545;
  animation: pulse 2s infinite;
}

/* line 87, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
#news-feed-container {
  height: 90vh;
  padding-bottom: 30px;
  z-index: 100;
  overflow: scroll;
  margin-top: 5vh;
}

/* line 93, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
#news-feed-container a {
  opacity: 1;
}

/* line 94, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
#news-feed-container a:hover {
  color: initial;
}

/* line 97, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.feed-date {
  font-size: 10px;
  text-transform: uppercase;
  margin: 10px 10px 10px 25px;
}

/* line 103, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.feed--read-all {
  height: 3em;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 20px;
  border-radius: 5px;
  color: var(--flashgreen);
}

/* line 112, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.feed--read-all a {
  padding-bottom: 5px;
  border-bottom: 1px solid var(--flashgreen);
  transition: .3s ease;
}

/* line 116, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.feed--read-all a:hover {
  color: var(--flashgreen) !important;
}

/* NEWSFEED — BLOG POST */
/* line 122, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.feed-blog {
  min-height: 200px;
  padding: 0;
  margin: 0 20px 20px 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 45px rgba(50, 50, 50, 0.1);
}

/* line 131, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.blog-preview-image {
  height: 120px;
  width: 100%;
  background-size: cover;
  background-position: center;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  object-fit: cover;
  object-position: center;
}

/* line 142, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.blog-preview-title {
  position: relative;
  margin: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--flashgreen);
  text-align: center;
  font-size: var(--responsivenormal);
  line-height: 1.2;
}

/* line 152, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.blog-preview-content {
  padding: 0 20px 0 20px;
  font-size: var(--responsivemini);
  line-height: 1.4;
}

/* line 156, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.blog-preview-content h1, .blog-preview-content h2, .blog-preview-content h3, .blog-preview-content h4 {
  font-size: 1.2em;
  margin: 0;
  font-family: inherit;
  font-weight: inherit;
  text-align: inherit;
  line-height: inherit;
  text-transform: inherit;
  letter-spacing: inherit;
}

/* line 166, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.blog-preview-content p, .blog-preview-content .blog-intro {
  font-size: 15px;
}

/* line 171, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.read-more {
  padding: 0px 20px 20px 20px;
  text-align: right;
  color: var(--flashgreen);
  font-size: var(--responsivemini);
}

/* line 176, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.read-more a {
  text-decoration: none;
}

/* line 178, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.read-more a:visited {
  color: var(--flashgreen);
}

/* NEWSFEED — CHANGELOG */
/* line 183, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.feed-changelog {
  position: relative;
  padding: 20px;
  margin: 0 20px 20px 20px;
  border-radius: 10px;
  box-shadow: 0px 2px 45px rgba(50, 50, 50, 0.1);
}

/* line 189, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
.feed-changelog p {
  margin: 0;
  line-height: 1.4;
  font-size: initial;
  font-size: 15px;
}

@media all and (max-width: 900px) {
  /* line 198, app/assets/stylesheets/layouts/landing/_newsfeed.scss */
  #newsfeed {
    width: 70vw;
  }
}

/* HTML TAGS STYLING */
/* line 23, app/assets/stylesheets/layouts/landing/devise.scss */
body {
  margin: 0;
  font-family: var(--amiko);
  color: var(--black);
  background-color: var(--lightgrey);
}

/* line 30, app/assets/stylesheets/layouts/landing/devise.scss */
a {
  width: fit-content;
  padding: 5px;
  font-size: 0.8em;
  text-decoration: none;
  opacity: 0.7;
  color: black;
  transition: .3s ease;
}

/* line 39, app/assets/stylesheets/layouts/landing/devise.scss */
a:hover {
  color: var(--flashgreen);
  opacity: 1;
  transition: .3s ease;
}

/* line 45, app/assets/stylesheets/layouts/landing/devise.scss */
p {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 40px;
  text-align: center;
}

/* line 52, app/assets/stylesheets/layouts/landing/devise.scss */
#two-fa-input-wrapper {
  display: flex;
  justify-content: space-between;
  width: 220px;
  margin: auto;
  margin-bottom: 30px;
}

/* line 59, app/assets/stylesheets/layouts/landing/devise.scss */
#two-fa-input-wrapper input::-webkit-outer-spin-button,
#two-fa-input-wrapper input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* line 65, app/assets/stylesheets/layouts/landing/devise.scss */
#two-fa-input-wrapper input[type=number] {
  -moz-appearance: textfield;
}

/* ALERT */
/* line 72, app/assets/stylesheets/layouts/landing/devise.scss */
.alert {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 400px;
  margin: 20px 0 0 0;
  padding: 20px 40px;
  border-radius: 10px;
  text-align: center;
  background-color: white;
  box-shadow: 0px 2px 45px rgba(50, 50, 50, 0.1);
}

/* line 84, app/assets/stylesheets/layouts/landing/devise.scss */
.alert .close {
  position: absolute;
  top: 0;
  right: 10px;
  font-size: 1.5em;
  color: white;
  cursor: pointer;
}

/* line 91, app/assets/stylesheets/layouts/landing/devise.scss */
.alert .fa {
  position: absolute;
  left: 20px;
}

/* line 96, app/assets/stylesheets/layouts/landing/devise.scss */
.alert-error {
  background-color: rgba(200, 50, 50, 0.3);
  color: #bb4d4d;
}

/* line 101, app/assets/stylesheets/layouts/landing/devise.scss */
.alert-danger {
  flex-direction: column;
  min-width: unset;
  background-color: rgba(200, 50, 50, 0.3);
  color: #bb4d4d;
}

/* YUMAN LOGO */
/* line 111, app/assets/stylesheets/layouts/landing/devise.scss */
#header {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 30px auto;
  opacity: 1;
  font-size: var(--responsiveregular);
  font-family: var(--comfortaa);
  text-transform: uppercase;
}

/* line 121, app/assets/stylesheets/layouts/landing/devise.scss */
#header:hover {
  color: var(--black);
}

/* line 124, app/assets/stylesheets/layouts/landing/devise.scss */
.logo-wordmark {
  height: 50px;
}

/* line 126, app/assets/stylesheets/layouts/landing/devise.scss */
.logo-ext {
  font-size: 0.5em;
  text-transform: lowercase;
}

/* HINT (TITLE) */
/* line 134, app/assets/stylesheets/layouts/landing/devise.scss */
.hint-container {
  z-index: 900;
  position: absolute;
  top: 40%;
  left: -4%;
  height: 10%;
  width: 20%;
  box-shadow: 1px 1px 5px solid var(--black);
  transform: rotate(-90deg);
}

/* line 145, app/assets/stylesheets/layouts/landing/devise.scss */
.hint-text {
  padding-top: 20px;
  padding-bottom: 20px;
  margin: 20px 0;
  text-align: left;
  text-transform: uppercase;
  line-height: 1.5;
  letter-spacing: 12px;
  font-family: var(--comfortaa);
  font-weight: lighter;
  font-size: 1.3em;
  color: var(--flashgreen);
}

/* DEVISE */
/* line 162, app/assets/stylesheets/layouts/landing/devise.scss */
#devise-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-color: #F8F8F8;
}

/* line 171, app/assets/stylesheets/layouts/landing/devise.scss */
#devise-form {
  width: 50%;
  min-width: 400px;
  max-width: 600px;
  padding: 0px 50px 30px 50px;
  margin: 50px 0 0 0;
  border-radius: 10px;
  background-color: white;
  box-shadow: 0px 2px 45px rgba(50, 50, 50, 0.1);
}

/* line 183, app/assets/stylesheets/layouts/landing/devise.scss */
form {
  display: flex;
  flex-direction: column;
  padding: 30px 60px 10px;
}

/* line 187, app/assets/stylesheets/layouts/landing/devise.scss */
form label {
  font-size: 12.5px;
  font-weight: 400;
  opacity: .8;
  color: #000;
}

/* line 192, app/assets/stylesheets/layouts/landing/devise.scss */
form .help-block {
  display: block;
  position: absolute;
  top: 0px;
  right: 0;
  font-size: 10px;
  text-align: left;
  color: #bb4d4d;
}

/* line 200, app/assets/stylesheets/layouts/landing/devise.scss */
form h3 {
  margin-top: 50px;
  font-family: var(--comfortaa);
  text-transform: uppercase;
  letter-spacing: 7px;
  line-height: 1.5;
}

/* line 208, app/assets/stylesheets/layouts/landing/devise.scss */
.form-link {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  text-align: right;
  margin: 12px 0 10px 0;
}

/* line 216, app/assets/stylesheets/layouts/landing/devise.scss */
.form-link .button_to {
  padding: 5px;
}

/* line 219, app/assets/stylesheets/layouts/landing/devise.scss */
.form-link .button_to button {
  padding: 0;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  opacity: 0.7;
  transition: .5s ease;
  cursor: pointer;
}

/* line 230, app/assets/stylesheets/layouts/landing/devise.scss */
.form-link .button_to button:hover {
  color: var(--flashgreen);
}

/* line 237, app/assets/stylesheets/layouts/landing/devise.scss */
input.floatable {
  height: 56px;
  width: 100%;
  min-width: 280px;
  padding: 10px 0px;
  margin-bottom: 20px;
  box-sizing: border-box;
  font-family: var(--amiko);
  font-size: 16px;
  font-weight: 400;
  border: none;
  border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  color: var(--black);
  background: #fff;
  transition: all .3s linear;
  -webkit-appearance: none;
}

/* line 253, app/assets/stylesheets/layouts/landing/devise.scss */
input.floatable:focus {
  outline: 0;
  border-bottom: solid 1px var(--flashgreen);
  box-shadow: 0 2px 6px -8px rgba(var(--flashgreen), 0.45);
}

/* line 257, app/assets/stylesheets/layouts/landing/devise.scss */
input.floatable.twofa {
  position: absolute;
  top: 3px;
  left: 6px;
  width: 30px;
  min-width: 30px;
  text-align: center;
  font-size: 22px;
  background: transparent;
}

/* line 269, app/assets/stylesheets/layouts/landing/devise.scss */
.twofa-wrapper {
  position: relative;
  width: 44px;
  background: #f7f7f7;
  height: 70px;
  border-radius: 10px;
}

/* line 277, app/assets/stylesheets/layouts/landing/devise.scss */
.floating-label {
  position: relative;
  margin-bottom: 10px;
}

/* line 280, app/assets/stylesheets/layouts/landing/devise.scss */
.floating-label label {
  position: absolute;
  top: calc(50% - 45px);
  left: 0;
  opacity: 0;
  transition: all .3s ease;
}

/* line 286, app/assets/stylesheets/layouts/landing/devise.scss */
.floating-label input:not(:placeholder-shown) {
  padding: 28px 0px 12px 0px;
}

/* line 288, app/assets/stylesheets/layouts/landing/devise.scss */
.floating-label input:not(:placeholder-shown) + label {
  transform: translateY(8px);
  opacity: .7;
}

/* BUTTONS */
/* line 296, app/assets/stylesheets/layouts/landing/devise.scss */
.btn-session-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  background-color: white;
}

/* line 304, app/assets/stylesheets/layouts/landing/devise.scss */
.btn-session {
  display: block;
  font-size: 1.2em;
  border-radius: 150px;
  cursor: pointer;
  transition: .3s ease;
  transform: scale(1);
}

/* line 311, app/assets/stylesheets/layouts/landing/devise.scss */
.btn-session:hover {
  transition: .5s ease;
  color: white;
  background-color: var(--flashgreen);
}

/* line 317, app/assets/stylesheets/layouts/landing/devise.scss */
.btn-validate {
  border: 2px solid var(--flashgreen);
  padding: 10px 20px;
  margin: 10px;
  color: var(--flashgreen);
  background: white;
}

/* line 323, app/assets/stylesheets/layouts/landing/devise.scss */
.btn-validate:disabled {
  border: 2px solid var(--lightblack);
  color: var(--lightblack);
}

/* line 328, app/assets/stylesheets/layouts/landing/devise.scss */
.btn-validate:disabled:hover {
  background-color: white;
}

/* line 334, app/assets/stylesheets/layouts/landing/devise.scss */
.btn-validate.no-opacity {
  opacity: 1 !important;
}

/* CAPTCHA */
/* line 339, app/assets/stylesheets/layouts/landing/devise.scss */
.captcha-box {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ACCOUNT CREATION SPECIAL */
/* line 348, app/assets/stylesheets/layouts/landing/devise.scss */
.fileupload {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

/* line 353, app/assets/stylesheets/layouts/landing/devise.scss */
.fileupload img {
  cursor: pointer;
}

/* line 356, app/assets/stylesheets/layouts/landing/devise.scss */
.img-input {
  justify-self: center;
  align-self: center;
  max-width: 100%;
  width: min-content;
}

/* line 363, app/assets/stylesheets/layouts/landing/devise.scss */
.input-file {
  position: absolute;
  height: 0.1px;
  width: 0.1px;
  overflow: hidden;
  opacity: 0;
  z-index: -1;
  cursor: pointer;
}

/* line 373, app/assets/stylesheets/layouts/landing/devise.scss */
.input-file-label {
  display: inline-block;
  padding: 15px;
  margin-bottom: 30px;
  border-bottom: 1.5px solid var(--flashgreen);
  box-sizing: border-box;
  font-size: 1em;
  color: var(--black);
  cursor: pointer;
  transition: .5s ease;
}

/* line 383, app/assets/stylesheets/layouts/landing/devise.scss */
.input-file-label:hover {
  border-color: var(--black);
}

/* line 386, app/assets/stylesheets/layouts/landing/devise.scss */
.input-file:focus + label {
  outline: 1px dotted #000;
  outline: -webkit-focus-ring-color auto 5px;
}

/* line 391, app/assets/stylesheets/layouts/landing/devise.scss */
.label-valid {
  border-color: var(--flashgreen);
  color: var(--flashgreen);
}

/* line 396, app/assets/stylesheets/layouts/landing/devise.scss */
.account-creation-btn {
  display: flex;
  padding-left: 40px;
  overflow: hidden;
  border-radius: 5px;
  border-color: var(--black);
  color: var(--black);
}

/* line 403, app/assets/stylesheets/layouts/landing/devise.scss */
.account-creation-btn:hover {
  color: var(--flashgreen);
  border-color: var(--flashgreen);
  background-color: white;
}

/* line 408, app/assets/stylesheets/layouts/landing/devise.scss */
.account-creation-btn:hover .hidden-emoji {
  transform: translateY(0px);
  transition: .2s ease;
}

/* line 414, app/assets/stylesheets/layouts/landing/devise.scss */
.hidden-emoji {
  margin-left: 10px;
  transition: .2s ease;
  transform: translateY(90px);
}

@media all and (max-width: 1000px) {
  /* line 422, app/assets/stylesheets/layouts/landing/devise.scss */
  #header {
    margin: 30px 50px 20px 50px;
  }
  /* line 423, app/assets/stylesheets/layouts/landing/devise.scss */
  #newsfeed {
    display: none;
  }
  /* line 425, app/assets/stylesheets/layouts/landing/devise.scss */
  .hint-container {
    display: none;
  }
  /* line 427, app/assets/stylesheets/layouts/landing/devise.scss */
  #devise-container {
    background-color: white;
  }
  /* line 428, app/assets/stylesheets/layouts/landing/devise.scss */
  form {
    padding: 0;
  }
  /* line 429, app/assets/stylesheets/layouts/landing/devise.scss */
  input.floatable {
    min-width: unset;
  }
  /* line 430, app/assets/stylesheets/layouts/landing/devise.scss */
  #devise-form {
    width: 70%;
    min-width: unset;
    max-width: unset;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
  }
  /* line 439, app/assets/stylesheets/layouts/landing/devise.scss */
  .btn-validate {
    background-color: white;
  }
  /* line 441, app/assets/stylesheets/layouts/landing/devise.scss */
  .alert {
    min-width: unset;
    border-radius: 0;
    width: 70%;
  }
}
