
// Custom Theming for Angular Material
// For more information: https://material.angular.io/guide/theming
@import '~@angular/material/theming';
// Plus imports for other components in your app.

// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// Be sure that you only ever include this mixin once!
@include mat-core();

// Define the palettes for your theme using the Material Design palettes available in palette.scss
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
// hue. Available color palettes: https://material.io/design/color/
$authentication-frontend-primary: mat-palette($mat-indigo);
$authentication-frontend-accent: mat-palette($mat-pink, A200, A100, A400);

// The warn palette is optional (defaults to red).
$authentication-frontend-warn: mat-palette($mat-red);

// Create the theme object. A theme consists of configurations for individual
// theming systems such as "color" or "typography".
$authentication-frontend-theme: mat-light-theme((
  color: (
    primary: $authentication-frontend-primary,
    accent: $authentication-frontend-accent,
    warn: $authentication-frontend-warn,
  )
));

// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include angular-material-theme($authentication-frontend-theme);


// Custom Theming for Angular Material
// For more information: https://material.angular.io/guide/theming
@import '~@angular/material/theming';
// Plus imports for other components in your app.

// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// Be sure that you only ever include this mixin once!
@include mat-core();

// Define the palettes for your theme using the Material Design palettes available in palette.scss
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
// hue. Available color palettes: https://material.io/design/color/
$authentication-frontend-primary: mat-palette($mat-indigo);
$authentication-frontend-accent: mat-palette($mat-pink, A200, A100, A400);

// The warn palette is optional (defaults to red).
$authentication-frontend-warn: mat-palette($mat-red);

// Create the theme object. A theme consists of configurations for individual
// theming systems such as "color" or "typography".
$authentication-frontend-theme: mat-light-theme((
  color: (
    primary: $authentication-frontend-primary,
    accent: $authentication-frontend-accent,
    warn: $authentication-frontend-warn,
  )
));

// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include angular-material-theme($authentication-frontend-theme);


// Custom Theming for Angular Material
// For more information: https://material.angular.io/guide/theming
@import '~@angular/material/theming';
// Plus imports for other components in your app.

// Include the common styles for Angular Material. We include this here so that you only
// have to load a single css file for Angular Material in your app.
// Be sure that you only ever include this mixin once!
@include mat-core();

// Define the palettes for your theme using the Material Design palettes available in palette.scss
// (imported above). For each palette, you can optionally specify a default, lighter, and darker
// hue. Available color palettes: https://material.io/design/color/
$authentication-frontend-primary: mat-palette($mat-indigo);
$authentication-frontend-accent: mat-palette($mat-pink, A200, A100, A400);

// The warn palette is optional (defaults to red).
$authentication-frontend-warn: mat-palette($mat-red);

// Create the theme object (a Sass map containing all of the palettes).
$authentication-frontend-theme: mat-light-theme($authentication-frontend-primary, $authentication-frontend-accent, $authentication-frontend-warn);

// Include theme styles for core and each component used in your app.
// Alternatively, you can import and @include the theme mixins for each component
// that you are using.
@include angular-material-theme($authentication-frontend-theme);

/* You can add global styles to this file, and also import other style files */
$primary-color: rgba(0, 164, 255, 1);

html,
body {
  height: 100%;
  background-color: rgba(250, 247, 248, 1);
  line-height: 1.3 !important;
}

.columns {
  height: 100% !important;
  background-color: rgba(250, 247, 248, 1);
}
.logo {
  width: 160px;
}

.login-text {
  font-size: 1.7rem;
}

.is-primary-color {
  background-color: $primary-color !important;
  color: white !important;
}

.is-text-color-primary {
  color: $primary-color;
}

input {
  margin: 2% 0 2% 0 !important;
  width: 100%;
  border: none;
  border-bottom: 1px solid #dddddd;
  outline: 0;
}

input:focus {
  outline: none !important;
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  font-size: 1rem;
}

.gray-text-color{
  color: rgb(112,112,112) !important;
}

.snackbar-style {
  background: $primary-color;
  text-align: center;
  color: white !important;
}

.link {
  cursor: pointer;
}

html, body { height: 100%; }
body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }
