/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

html {
  font-family: Roboto, sans-serif;
}

.login-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  margin-top: 200px;

  form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .field {
    flex-direction: column;
    position: relative;
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0;
    vertical-align: top;
    max-width: 697px;
    width: 100%;
    margin-top: 10px;
  }

  .field > input {
    font-size: 18px;
    height: 60px;
    padding: 28px 15px !important;
    border-radius: 4px;
    width: 100%;
    box-sizing: border-box;
    font-weight: 700 !important;
    text-overflow: ellipsis;
    border: 1px solid rgba(0, 0, 0, 0.23);

    &::placeholder {
      color: #999999 !important;
      font-weight: 400;
      opacity: 0.42;
    }
  }

  .actions > input[type=submit] {
    background-color: #192a4e !important;
    border-color: #fff;
    border-radius: 10px;
    border-style: solid;
    border-width: 2px;
    box-shadow: 0 7px 4px -4px rgba(0, 0, 0, 0.2);
    color: #fff;
    font-size: 18px;
    font-weight: 600 !important;
    height: 50px;
    letter-spacing: 0.6px;
    margin-top: 30px;
    margin-bottom: 0px;
    min-width: 170px;
    padding: 8px 16px;
    text-transform: uppercase;
    width: 100%;
    width: auto;
  }
}
