@charset "UTF-8";
/********************************
Theme Name: InPublix
Author: Bysted
Author URL: http://www.bysted.se/

Stylesheet: Login Stylesheet
Version: 1.0
********************************/
/******************************************************************
Version: 1.1.4
******************************************************************/
/*Usage
	@include MQ(M) {
		Content
	}
*/
/******************************************************************
Version: 1.2.20
******************************************************************/
/*********************
HYPHENS

p {
  // Använda standardvärden
  @include hyphenate-settings;

  // Använda anpassade värden
  @include hyphenate-settings(
    $hyphens: auto,
    $limit_chars: 6 3 3,
    $limit_lines: 2,
    $limit_last: always,
    $limit_zone: 8%
  );
}

****/
/*********************
Font awesome icon

.user-icon {
  @include fa-icon("\f007"); // Standard: solid i classic
}

.mail-icon {
  @include fa-icon("\f0e0", #ff5733, "light"); // Light-stil med röd färg
}

.sharp-user-icon {
  @include fa-icon("\f007", rgb(0, 150, 136), "solid", "sharp"); // Sharp solid med turkos färg
}

.brand-icon {
  @include fa-icon("\f099", #1da1f2, "brands"); // Twitter-logga i blå färg
}

*********************/
/*********************
IMAGE FILTERS

img { 
  @include filter(grayscale, 100%);
}

*********************/
/*********************
Alpha Background

@include alpha-attribute('background-color', rgba(black, 0.5), white);
@include alpha-attribute('background', opacify($color, 0.1), $background);
@include alpha-attribute('background', transparentize($color, 0.2), $background);

*********************/
/*********************
Text Background

@include text-background(2em, 1em, white);

*********************/
/*********************
Object Fit
*********************/
/*
This mixin can be used to set the object-fit:
@include object-fit(contain);
or object-fit and object-position:
@include object-fit(cover, top);
 */
/*********************
  Disable hyphens
*********************/
/*********************
Smooth Scroll for IOS
*********************/
/*

*/
/*********************
Hide Scroll bars
*********************/
/*********************
OPACITY

@include opacity(0.8);

*********************/
/*********************
Gradient
*********************/
/*********************
CSS3 GRADIENTS
*********************/
/*********************
Box shadow
*********************/
/*********************
PREFIXES
*********************/
/*********************
Colors
*********************/
/*********************
TRANSITIONS
*********************/
/*********************
SHOW/HIDE
*********************/
/*********************
OTHER
*********************/
/*
 https://joshbroton.com/quick-fix-sass-mixins-for-css-keyframe-animations/

 Using the mixins looks like this:

 @include keyframes(move-the-object) {
0%   { left: 100px; }
100% { left: 200px; }
 }

 .object-to-animate {
@include animation('move-the-object .5s 1', 'move-the-object-again .5s 1 .5s');
 } 

 */
/*********************
BACKGROUND POSITION
*********************/
/* 
 .container-with-floated-children {
@extend %clearfix;
 }
 */
/******************************************************************
Version: 1.0.15
******************************************************************/
/* Basic mixins */
/* Justify */
/* Align */
/* Other */
/*
For modern browsers
.grid-container {
  @include responsive-grid(4, 15px, 3, 2); // 4 kolumner på desktop, 3 på tablet, 2 på mobil, 15px gap
}
*/
/*
For modern browsers
.grid-container {
  @include square-grid(3, 20px); // 3 kolumner, 20px gap
}
*/
/*
  For older browsers
  .grid-container {
  @include square-grid(3, 20px); // 3 kolumner, 20px gap
}
  */
/******** STYLE ********/
* {
  box-sizing: border-box;
}

.login #login_error, .login .message {
  border: none;
  box-shadow: none;
  padding: 0;
}

body.login {
  background-color: #f7f7f7;
  display: flex;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (min-width: 992px) {
  body.login {
    max-width: 500px;
  }
}

.language-switcher {
  display: none;
}

#login {
  margin: 0;
}

#wp-submit:hover {
  background-color: #333 !important;
}

#login {
  padding: 35px 25px 15px;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05);
  display: flex;
  -moz-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
  -ms-flex-pack: center;
  -moz-align-items: center;
  -o-align-items: center;
  align-items: center;
  -ms-flex-align: center;
  flex-wrap: wrap;
  background-color: #fff;
  position: relative;
}
#login .forgetmenot {
  width: 100%;
  margin-bottom: 15px;
}

.login form {
  border: none !important;
  border-radius: 0 !important;
  margin-top: 0;
  margin-bottom: 35px;
}

.forgetmenot {
  display: none;
}

.login form .input, .login form input[type=checkbox], .login input[type=text] {
  border: none;
  box-shadow: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  background: none;
  transition: all 150ms ease;
  margin-top: 0;
  margin-bottom: 30px;
  border-radius: 0;
}
.login form .input:focus, .login form input[type=checkbox]:focus, .login input[type=text]:focus {
  border-bottom-color: #000;
}

.login h1 a {
  background: url("images/signin_logo.svg");
  width: 150px;
  height: 33px;
  margin-bottom: 35px;
}

.login form {
  font-weight: normal;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.login label {
  color: #9E9E9E;
  text-align: left;
  font-size: 12px;
}

body form .input {
  font-family: sans-serif;
  font-weight: 200;
  font-size: 24px;
  width: 97%;
  padding: 3px;
  margin-top: 2px;
  margin-right: 6px;
  margin-bottom: 30px;
  border: 1px solid #E5E5E5;
  background: #FBFBFB;
  outline: none;
  box-shadow: inset 1px 1px 2px rgba(200, 200, 200, 0.2);
}

#wp-submit {
  background-color: #000;
  border: none;
  border-radius: 0;
  box-shadow: none;
  width: 100%;
  padding: 7px 0;
  height: auto;
  text-shadow: none;
  transition: all 150ms ease;
}
#wp-submit:hover {
  background-color: #bfbfbf;
}

.login #nav {
  text-align: center;
  margin: 0;
}

#backtoblog {
  display: none;
}

.login #nav a:hover {
  color: #000;
}/*# sourceMappingURL=login.css.map */