/*!********************************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[0].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[0].use[2]!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[0].use[3]!./cartridges/app_tr_core/cartridge/client/default/scss/pages/login/loginMain.scss ***!
  \********************************************************************************************************************************************************************************************************************************************************************************************************/
/**
 * TABLE OF CONTENTS
 *
 * SETTINGS
 * Global..................Globally-available variables and config.
 *
 * TOOLS
 * Mixins..................Useful mixins.
 *
 * COMPONENTS
 * 
 * 
 * MODULES
 *
 */
/*------------------------------------*\
  #SETTINGS
\*------------------------------------*/
/**
 * Returns the value of the `$key` value of a provided `$map`.
 */
/**
 * Uses `getProperty()` to return a value from the `$colors` map.
 */
/**
 * Uses `getProperty()` to return a value from the `$breakpoints` map.
 */
/*------------------------------------*\
  #TYPOGRAPHY
\*------------------------------------*/
/*------------------------------------*\
  #COLORS
\*------------------------------------*/
/*------------------------------------*\
  #ELEMENT-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HEADER-DEFAULTS
\*------------------------------------*/
/*------------------------------------*\
  #HORIZONTAL-SPACING
\*------------------------------------*/
/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/*------------------------------------*\
  #TRANSITIONS
\*------------------------------------*/
/*------------------------------------*
  #TR PRIMARY COLORS
\*------------------------------------*/
/*------------------------------------*
  #TR SECONDARY COLORS
\*------------------------------------*/
/*------------------------------------*\
  #TOOLS
\*------------------------------------*/
/**
 * Responsive Mixin
 * This mixin is designed for a _cleaner_ first approach
 * This means that css isn't overridden but rather replaced for
 * different viewport widths; making it easier to inspect/debug css
 *
 * Usage:
 * @include media-query(exclude-medium)    { ... }
 * @include media-query(medium-up-to-site) 	   { ... }
 * ... etc
 */
/**
 * [Adds styles to allow an element's height scale proportionatelly]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 */
/**
 * [Calculates the percentage aspect ratio (what % height is compared to the width)]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * *****REMEMBER TO USE MARGIN OR PADDING AND NOT TOP/BOTTOM******
 * [Calculates the center of an element in relation to a provided width and height.
 * Useful to place an absolute element at the center of another when
 * the positioned element cannot be the target's child ]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * [In the  awful case you can't use Flexbox to vertically align something]
 * @param  {[type]} $transform:       false         [Use transforms to align instead of the absolute trick]
 * @param  {[type]} $pos:             absolute      [position type]
 * @param  {[type]} $posAdj:          0             [position adjustment. If $transform is true, this value only affects the 'top' property.]
 * @param  {[type]} $alignHorizontal: false         [Includes horizontal alignment]
 */
/**
 * Generate Enumerated Class
 * Iterates from 0 to the specified length and generates classes that set the specified property
 * @param  {[String]} $classname:       required      [Required: Specify the class name]
 * @param  {[String]} $property:        $classname    [Optional: Specify the enumerated property (if it's different from the name of the class)]
 * @param  {[Number]} $length:          10            [Optional: Specify the end of the loop]
 * @param  {[String]} $units:           null          [Optional: specify units to append to the enumerated property]
 */
/**
* [Strip the pesky units from values]
* @param  {[Number]} $value
*/
/**
* [Fluid Type]
*/
/**
 * Custom font definition
 *
 * Example of utilization
 * @include font-face('Graphik', 'Graphik-Medium', 'graphik/medium', 500);
 */
/**
 * Position definition
 *
 * Example of utilization
 * @include absolute(top 1rem left 2rem);
 */
/**
 * Dropdown
 *
 * Example of utilization
 * @include dropdown;
 */
/*md

# Functions

This section describes core functions used for development in the project.

## Function strip-unit

Removes the unit (e.g. px, em, rem) from a value, returning the number only.

Returns the same number, sans unit.

## Function value-to-rem

**Private function**.
Converts a pixel value to matching rem value. *Any* value passed, regardless of unit, is assumed to be a pixel value.
By default, the base pixel value used to calculate the rem value is taken from the `$font-size-base` variable.

Returns a number in rems, calculated based on the given value and the base pixel value.
rem values are passed through as is.

## Function rem-calc

Converts one or more pixel values into matching rem values.
By default, the base pixel value used to calculate the rem value is taken from the `$font-size-base` variable.
If you need to convert a comma-separated list, wrap the list in parentheses.

Return a list of converted values.

*/
/*------------------------------------*\
  #COMPONENTS
\*------------------------------------*/
@media (min-width: 48rem) {
  .login {
    padding-top: 3.75rem;
    padding-bottom: 8rem;
  }
}
@media (max-width: 47.9375rem) {
  .login {
    padding-top: 2.75rem;
    padding-bottom: 5rem;
  }
  .login__section:not(:last-child) {
    margin-bottom: 4.5rem;
  }
}
.password-reset-modal .window-modal__content {
  min-height: 0px;
  padding: 2rem;
}
@media (min-width: 48rem) {
  .password-reset-modal .window-modal__content {
    max-width: 60%;
  }
}
.password-reset-modal .modal__action, .password-reset-modal .modal__content {
  margin-top: 1.5rem;
}
.password-reset-modal .modal__action {
  padding: 1rem 1.5rem;
}
.password-reset-modal .form-input-error {
  border: 1px solid #F02C34;
}
.password-reset-modal .form-error {
  color: #F02C34;
}

.main-wrapper-form .main-wrapper-name {
  flex-wrap: wrap;
}
.main-wrapper-form .main-wrapper-name .form-group .form-control {
  width: 100%;
}
.main-wrapper-form .pass-const-head {
  color: #6E6E6E;
  padding-top: 1rem;
}
.main-wrapper-form .join-terms-condition,
.main-wrapper-form .privacyPolicy {
  display: flex;
  align-items: center;
}
.main-wrapper-form .join-terms-condition input,
.main-wrapper-form .privacyPolicy input {
  width: 1.25rem;
  height: 1.25rem;
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}
.main-wrapper-form .join-terms-condition input + label,
.main-wrapper-form .privacyPolicy input + label {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
}
.main-wrapper-form .join-terms-condition input + label:before,
.main-wrapper-form .privacyPolicy input + label:before {
  content: "";
  -webkit-appearance: none;
  background-color: transparent;
  border: 0.0625rem solid #DDDDDD;
  padding: 0.625rem;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
}
.main-wrapper-form .join-terms-condition input:checked + label:after,
.main-wrapper-form .privacyPolicy input:checked + label:after {
  content: "";
  display: block;
  position: absolute;
  top: 0.25rem;
  left: 0.5625rem;
  width: 0.3125rem;
  height: 0.75rem;
  border: solid #000000;
  border-width: 0 0.0625rem 0.0625rem 0;
  transform: rotate(45deg);
}
.main-wrapper-form .privacyPolicy {
  margin-bottom: 1rem;
}
.main-wrapper-form .terms-condition-content .terms-bold {
  font-weight: 700;
}
.main-wrapper-form .terms-condition-content .terms-new-line {
  display: inline;
}
.main-wrapper-form .privacyPolicy-content .terms-new-line {
  display: inline;
}
.main-wrapper-form .terms-condition-content,
.main-wrapper-form .privacyPolicy-content {
  font-size: 1rem;
  line-height: 1.25rem;
  padding-left: 0.8rem;
  padding-right: 0.4rem;
}
.main-wrapper-form .terms-cond-container {
  display: flex;
  text-align: center;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #000000;
  padding: 1.25rem 0;
}
.main-wrapper-form .terms-cond-container .terms-inner {
  padding: 0 0.938rem;
}
.main-wrapper-form .terms-cond-container .terms-inner .true-rewards-svg {
  fill: transparent;
  width: 2.875rem;
  height: 2.875rem;
}
.main-wrapper-form .create-acc-btn {
  font-weight: 700;
  padding: 0.75rem 0;
  color: #FFF;
}
.main-wrapper-form .create-acc-btn:hover:not([disabled]):not(.disabled) {
  background-color: #000000;
  border-color: #000000;
}

.form-control__constraints {
  padding-left: 0;
}
.form-control__constraints .pass-const-head,
.form-control__constraints .form-control__constraint {
  font-size: 1rem;
  line-height: 1.25rem;
  color: #6E6E6E;
  display: flex;
  align-items: center;
  flex: 1 1 100%;
  list-style: none;
  padding-bottom: 0.5rem;
}
.form-control__constraints .pass-const-head span,
.form-control__constraints .form-control__constraint span {
  padding-left: 0.8rem;
}
.form-control__constraints .pass-const-head .icon,
.form-control__constraints .form-control__constraint .icon {
  width: 1.25rem;
  height: 1.25rem;
}
.form-control__constraints .pass-const-head {
  padding-bottom: 0.8rem;
}

@media (min-width: 48rem) {
  .main-wrapper-form {
    width: 29.375rem;
  }
  .main-wrapper-form h2 {
    font-size: 2rem;
    line-height: 2.2rem;
    font-weight: 700;
    padding-top: 2rem;
  }
  .main-wrapper-form .main-wrapper-name {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 1rem;
  }
  .main-wrapper-form .terms-condition-content .terms-new-line {
    display: block;
  }
  .main-wrapper-form .privacyPolicy-content .terms-new-line {
    display: block;
  }
  .main-wrapper-form .terms-cond-container .terms-inner {
    padding: 0 1.25rem;
  }
}
.register {
  padding: 2.5rem 0 4.25rem;
}
.register .register-form-container {
  padding: 0 1rem;
}

@media (max-width: 47.9375rem) {
  .login__section:not(:last-child) {
    margin-bottom: 0;
  }
}
@media (min-width: 48rem) {
  .login__section .form-section:first-child {
    margin-top: 1.375rem;
  }
}
@media (max-width: 47.9375rem) {
  .login__section-signin {
    border-bottom: 0.0625rem solid #DDDDDD;
    padding-bottom: 2rem;
    margin-bottom: 0;
  }
}
@media (min-width: 48rem) {
  .login__section-signin {
    border-right: 0.0625rem solid #DDDDDD;
    padding-right: 4rem;
  }
}
.login__section-register {
  padding-top: 2rem;
}
@media (min-width: 48rem) {
  .login__section-register {
    padding-top: 0;
    padding-left: 4rem;
  }
}
.login__section-register .login__section-heading {
  color: #000000;
  padding-bottom: 2rem;
}
@media (max-width: 47.9375rem) {
  .login__section-register .login__section-heading {
    padding-bottom: 1.5rem;
  }
}
.login__section-heading {
  padding: 0 0 0.625rem;
  color: #000000;
}
@media (min-width: 48rem) {
  .login__section-heading {
    padding: 2.75rem 0 0;
  }
}
.login__section .login-form .form-input-error {
  border: 1px solid #F02C34;
}
.login__section .login-form .form-error {
  color: #F02C34;
}
.login__section .login-form .form-group .form-check .form-check-label {
  color: #000000;
}
@media (min-width: 48rem) {
  .login__section .login-form .form-group .form-check .form-check-label {
    font-size: 1rem;
  }
}
.login__section-forgot-password-link {
  color: #6E6E6E;
  text-underline-offset: 25%;
}
.login__section-signin-submit {
  padding-top: 0.25rem;
  margin: 0;
}
.login__section-submit-btn {
  padding: 1rem 1.5rem;
}
.login__section-register-btn {
  padding: 1rem 2rem;
  margin: 0 auto;
}

.login-form .form-group .form-check .form-check-label {
  color: #000000;
}
@media (min-width: 48rem) {
  .login-form .form-group .form-check .form-check-label {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=loginMain.css.map*/