96 lines
2.0 KiB
SCSS
96 lines
2.0 KiB
SCSS
:host {
|
|
display: flex;
|
|
justify-content: center;
|
|
.woocommerce-form-login__submit {
|
|
width: 150px;
|
|
}
|
|
|
|
h2 {
|
|
color: #fff;
|
|
width: 100%;
|
|
height: 49px;
|
|
text-align: left;
|
|
padding-top: 13px;
|
|
padding-left: 32px;
|
|
background: #0d457e;
|
|
position: relative;
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-size: 20px;
|
|
line-height: 24px;
|
|
&::before {
|
|
content: "";
|
|
width: 19px;
|
|
height: 4px;
|
|
background: #fff;
|
|
display: block;
|
|
position: absolute;
|
|
left: 0;
|
|
top: 24px;
|
|
}
|
|
}
|
|
|
|
.woocommerce-form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
background: #ffffff;
|
|
box-shadow: 0px 0px 10px rgb(0 0 0 / 15%);
|
|
border-radius: 15px;
|
|
min-height: 262px;
|
|
max-width: 400px;
|
|
overflow: auto;
|
|
position: relative;
|
|
padding-bottom: 10px;
|
|
}
|
|
|
|
.form-row {
|
|
width: 80%;
|
|
margin-bottom: 16px;
|
|
max-width: 400px;
|
|
.button {
|
|
width: 100%;
|
|
font-weight: 600;
|
|
letter-spacing: 2px;
|
|
border: none;
|
|
height: 45px;
|
|
background: #b8deff;
|
|
border-radius: 15px;
|
|
color: #000;
|
|
font-style: normal;
|
|
font-weight: 700;
|
|
font-size: 16px;
|
|
line-height: 20px;
|
|
}
|
|
label {
|
|
display: inline-block;
|
|
margin-bottom: 8px;
|
|
margin-top: 15px;
|
|
color: #000;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-size: 18px;
|
|
line-height: 22px;
|
|
}
|
|
.input-text {
|
|
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
|
|
Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji",
|
|
"Segoe UI Symbol";
|
|
font-size: 1rem;
|
|
color: #495057;
|
|
background: #ffffff;
|
|
padding: 0.5rem 0.75rem;
|
|
border: 1px solid #ced4da;
|
|
transition: background-color 0.15s, border-color 0.15s, box-shadow 0.15s;
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
border-radius: 4px;
|
|
width: 100%;
|
|
}
|
|
}
|
|
.decoration-pattern {
|
|
width: 100%;
|
|
height: 34px;
|
|
}
|
|
}
|