|
@ -1,11 +1,11 @@ |
|
|
input.ng-invalid.ng-touched { |
|
|
input.ng-invalid.ng-touched { |
|
|
border: 1px solid $clr-red; |
|
|
|
|
|
|
|
|
border: 1px solid #c92a1c; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.input-errors { |
|
|
.input-errors { |
|
|
position: relative; |
|
|
position: relative; |
|
|
top: -2%; |
|
|
top: -2%; |
|
|
color: $clr-red; |
|
|
|
|
|
|
|
|
color: #c92a1c; |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
input[type='text'], |
|
|
input[type='text'], |
|
@ -33,7 +33,7 @@ select { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
&::placeholder { |
|
|
&::placeholder { |
|
|
color: $clr-grey-light-dark; |
|
|
|
|
|
|
|
|
color: #cecece; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
@ -61,8 +61,8 @@ input[type='checkbox'] { |
|
|
} |
|
|
} |
|
|
&:disabled{ |
|
|
&:disabled{ |
|
|
&::before { |
|
|
&::before { |
|
|
background-color: $clr-white-dark; |
|
|
|
|
|
border: 2px solid $clr-checkbox-disabled-border; |
|
|
|
|
|
|
|
|
background-color: #f7f7f7; |
|
|
|
|
|
border: 2px solid #343A3F; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
@ -74,13 +74,17 @@ input[type='checkbox'] { |
|
|
&::before { |
|
|
&::before { |
|
|
height: 12px; |
|
|
height: 12px; |
|
|
width: 12px; |
|
|
width: 12px; |
|
|
border: 1px solid $clr-black-light; |
|
|
|
|
|
|
|
|
border: 1px solid #343A3F; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.input-wrapper { |
|
|
.input-wrapper { |
|
|
@include flex-box(); |
|
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
|
flex-direction: column; |
|
|
|
|
|
justify-content: center; |
|
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
|
position: relative; |
|
|
position: relative; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
margin-bottom: 6%; |
|
|
margin-bottom: 6%; |
|
@ -104,7 +108,11 @@ input[type='checkbox'] { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
.otp-wrapper { |
|
|
.otp-wrapper { |
|
|
@include flex-box(row, space-between); |
|
|
|
|
|
|
|
|
display: flex; |
|
|
|
|
|
flex-direction: row; |
|
|
|
|
|
justify-content: space-between; |
|
|
|
|
|
align-items: center; |
|
|
|
|
|
|
|
|
width: 100%; |
|
|
width: 100%; |
|
|
|
|
|
|
|
|
input { |
|
|
input { |
|
@ -121,9 +129,9 @@ select { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
button { |
|
|
button { |
|
|
background: $clr-blue-gradient; |
|
|
|
|
|
|
|
|
background: linear-gradient(178.84deg, #009cde 0.07%, #003087 95.33%); |
|
|
border-radius: 10px; |
|
|
border-radius: 10px; |
|
|
border: 1px solid $clr-blue-light; |
|
|
|
|
|
|
|
|
border: 1px solid #009cde; |
|
|
height: 50px; |
|
|
height: 50px; |
|
|
width: 100%; |
|
|
width: 100%; |
|
|
font-size: 1rem; |
|
|
font-size: 1rem; |
|
@ -131,7 +139,7 @@ button { |
|
|
letter-spacing: 1px; |
|
|
letter-spacing: 1px; |
|
|
color: #ffffff; |
|
|
color: #ffffff; |
|
|
font-weight: bold; |
|
|
font-weight: bold; |
|
|
font-family: Blender Pro Bold; |
|
|
|
|
|
|
|
|
font-family: 'Blender Pro Bold'; |
|
|
|
|
|
|
|
|
&.modify-state { |
|
|
&.modify-state { |
|
|
background: #ffffff; |
|
|
background: #ffffff; |
|
@ -140,9 +148,9 @@ button { |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
&:disabled { |
|
|
&:disabled { |
|
|
background: $clr-grey-button-disable; |
|
|
|
|
|
|
|
|
background: #cecece; |
|
|
border: none; |
|
|
border: none; |
|
|
color: $clr-black-light; |
|
|
|
|
|
|
|
|
color: #343A3F; |
|
|
} |
|
|
} |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|