| 1 |
.passster-form h4 { |
| 2 |
margin: 10px 0 !important; |
| 3 |
} |
| 4 |
|
| 5 |
.passster-form fieldset { |
| 6 |
border: medium none !important; |
| 7 |
margin: 0px; |
| 8 |
min-width: 100%; |
| 9 |
padding: 0; |
| 10 |
width: 100%; |
| 11 |
} |
| 12 |
|
| 13 |
.passster-form input[type="text"], .passster-form input[type="email"], .passster-form input[type="password"] { |
| 14 |
width: 100%; |
| 15 |
border: 1px solid #CCC; |
| 16 |
background: #FFF; |
| 17 |
margin: 0 0 5px; |
| 18 |
padding: 10px; |
| 19 |
box-sizing: border-box; |
| 20 |
} |
| 21 |
|
| 22 |
.passster-form input[type="text"]:hover, .passster-form input[type="email"]:hover, .passster-form input[type="password"]:hover { |
| 23 |
-webkit-transition: border-color 0.3s ease-in-out; |
| 24 |
-moz-transition: border-color 0.3s ease-in-out; |
| 25 |
transition: border-color 0.3s ease-in-out; |
| 26 |
border: 1px solid #AAA; |
| 27 |
} |
| 28 |
|
| 29 |
.passster-form button[type="submit"] { |
| 30 |
cursor: pointer; |
| 31 |
width: 100%; |
| 32 |
border: none; |
| 33 |
text-decoration: none; |
| 34 |
} |
| 35 |
|
| 36 |
.passster-form button[type="submit"]:hover { |
| 37 |
-webkit-transition: background 0.3s ease-in-out; |
| 38 |
-moz-transition: background 0.3s ease-in-out; |
| 39 |
transition: background-color 0.3s ease-in-out; |
| 40 |
} |
| 41 |
|
| 42 |
.passster-form button[type="submit"]:active { |
| 43 |
box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.5); |
| 44 |
} |
| 45 |
|
| 46 |
.passster-form input:focus, .passster-form textarea:focus { |
| 47 |
outline: 0; |
| 48 |
border: 1px solid #999; |
| 49 |
} |
| 50 |
|
| 51 |
.passster-form::-webkit-input-placeholder { |
| 52 |
color: #888; |
| 53 |
} |
| 54 |
|
| 55 |
.passster-form:-moz-placeholder { |
| 56 |
color: #888; |
| 57 |
} |
| 58 |
|
| 59 |
.passster-form::-moz-placeholder { |
| 60 |
color: #888; |
| 61 |
} |
| 62 |
|
| 63 |
.passster-form:-ms-input-placeholder { |
| 64 |
color: #888; |
| 65 |
} |
| 66 |
|
| 67 |
.passster-captcha-input { |
| 68 |
float: left; |
| 69 |
width: 70%; |
| 70 |
padding-right: 20px; |
| 71 |
box-sizing: border-box; |
| 72 |
} |
| 73 |
|
| 74 |
.passster-recaptcha-input { |
| 75 |
float: right; |
| 76 |
width: 30%; |
| 77 |
padding-top: 15px; |
| 78 |
} |
| 79 |
|
| 80 |
.passster-recaptcha { |
| 81 |
float: left; |
| 82 |
width: 50%; |
| 83 |
padding-left: 20px; |
| 84 |
box-sizing: border-box; |
| 85 |
} |
| 86 |
|
| 87 |
.passster-error { |
| 88 |
width: 100%; |
| 89 |
text-align: center; |
| 90 |
float: left; |
| 91 |
padding: 10px; |
| 92 |
background: #e95353; |
| 93 |
color: white; |
| 94 |
font-size: 16px; |
| 95 |
display: none; |
| 96 |
box-sizing: border-box; |
| 97 |
} |
| 98 |
|
| 99 |
.passster-hide { |
| 100 |
display: none; |
| 101 |
} |
| 102 |
|
| 103 |
.show-password-link { |
| 104 |
display: block; |
| 105 |
position: absolute; |
| 106 |
z-index: 11; |
| 107 |
font-size: 0.8rem; |
| 108 |
} |
| 109 |
|
| 110 |
.password-showing { |
| 111 |
width: 100% !important; |
| 112 |
display: inline; |
| 113 |
} |
| 114 |
|
| 115 |
.ps-loader { |
| 116 |
width: 30%; |
| 117 |
margin: 0 auto 10px auto; |
| 118 |
display: none; |
| 119 |
} |
| 120 |
|