Form
This commit is contained in:
+12
-6
@@ -303,12 +303,6 @@
|
|||||||
Interested in carrying [fi-ne] or LACUEOR? Send us your details
|
Interested in carrying [fi-ne] or LACUEOR? Send us your details
|
||||||
and we will get back to you within 48 hours.
|
and we will get back to you within 48 hours.
|
||||||
</p>
|
</p>
|
||||||
<p class="b2b-notice" style="margin-bottom: 40px">
|
|
||||||
Already a partner?  —  
|
|
||||||
<a href="https://b2b.finorbrands.com"
|
|
||||||
>Sign in to your B2B account</a
|
|
||||||
>
|
|
||||||
</p>
|
|
||||||
<form class="signup-form" action="#signup" method="post" novalidate>
|
<form class="signup-form" action="#signup" method="post" novalidate>
|
||||||
<div class="signup-grid">
|
<div class="signup-grid">
|
||||||
<div class="form-group">
|
<div class="form-group">
|
||||||
@@ -381,6 +375,18 @@
|
|||||||
Send Request
|
Send Request
|
||||||
</button>
|
</button>
|
||||||
</form>
|
</form>
|
||||||
|
|
||||||
|
<div class="signup-notice-rule" aria-hidden="true"></div>
|
||||||
|
|
||||||
|
<p
|
||||||
|
class="b2b-notice"
|
||||||
|
style="margin-top: 0; border-top: none; background: transparent"
|
||||||
|
>
|
||||||
|
Already a partner?  —  
|
||||||
|
<a href="https://b2b.finorbrands.com"
|
||||||
|
>Sign in to your B2B account</a
|
||||||
|
>
|
||||||
|
</p>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<!-- ============================================================
|
<!-- ============================================================
|
||||||
|
|||||||
@@ -774,35 +774,51 @@ footer {
|
|||||||
SIGN-UP SECTION
|
SIGN-UP SECTION
|
||||||
============================================================ */
|
============================================================ */
|
||||||
.signup-section {
|
.signup-section {
|
||||||
background: var(--warm-white);
|
background: var(--cream);
|
||||||
border-top: 1px solid var(--border);
|
border-top: 1px solid var(--border);
|
||||||
border-bottom: 1px solid var(--border);
|
border-bottom: 1px solid var(--border);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.signup-inner {
|
||||||
|
max-width: 820px;
|
||||||
|
margin: 0 auto;
|
||||||
|
}
|
||||||
|
|
||||||
.signup-form {
|
.signup-form {
|
||||||
max-width: 720px;
|
max-width: 640px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
gap: 20px;
|
gap: 22px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.signup-grid {
|
.signup-grid {
|
||||||
display: grid;
|
display: grid;
|
||||||
grid-template-columns: 1fr 1fr;
|
grid-template-columns: 1fr 1fr;
|
||||||
gap: 18px;
|
gap: 20px 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.form-group--full {
|
.form-group {
|
||||||
grid-column: 1 / -1;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
gap: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-group label {
|
||||||
|
font-size: 9px;
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: 0.22em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
color: var(--mid-grey);
|
||||||
|
}
|
||||||
|
|
||||||
|
.form-group input,
|
||||||
.signup-form textarea {
|
.signup-form textarea {
|
||||||
font-family: var(--font-sans);
|
font-family: var(--font-sans);
|
||||||
font-size: 13px;
|
font-size: 13px;
|
||||||
font-weight: 300;
|
font-weight: 300;
|
||||||
letter-spacing: 0.04em;
|
letter-spacing: 0.04em;
|
||||||
padding: 12px 16px;
|
padding: 14px 18px;
|
||||||
border: 1px solid var(--light-grey);
|
border: 1px solid var(--light-grey);
|
||||||
background: var(--warm-white);
|
background: var(--warm-white);
|
||||||
color: var(--charcoal);
|
color: var(--charcoal);
|
||||||
@@ -812,21 +828,63 @@ footer {
|
|||||||
box-shadow var(--transition);
|
box-shadow var(--transition);
|
||||||
border-radius: 0;
|
border-radius: 0;
|
||||||
-webkit-appearance: none;
|
-webkit-appearance: none;
|
||||||
resize: vertical;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-group input::placeholder,
|
||||||
.signup-form textarea::placeholder {
|
.signup-form textarea::placeholder {
|
||||||
color: var(--light-grey);
|
color: var(--light-grey);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-group input:focus,
|
||||||
.signup-form textarea:focus {
|
.signup-form textarea:focus {
|
||||||
border-color: var(--gold);
|
border-color: var(--gold);
|
||||||
box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.12);
|
box-shadow: 0 0 0 3px rgba(184, 150, 90, 0.12);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.form-group--full {
|
||||||
|
grid-column: 1 / -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
.signup-form textarea {
|
||||||
|
resize: vertical;
|
||||||
|
min-height: 120px;
|
||||||
|
}
|
||||||
|
|
||||||
.signup-form .btn-primary {
|
.signup-form .btn-primary {
|
||||||
align-self: center;
|
align-self: center;
|
||||||
max-width: 320px;
|
max-width: 300px;
|
||||||
|
margin-top: 8px;
|
||||||
|
padding: 16px 40px;
|
||||||
|
background: var(--charcoal);
|
||||||
|
color: var(--cream);
|
||||||
|
border: 1px solid var(--charcoal);
|
||||||
|
font-family: var(--font-sans);
|
||||||
|
font-size: 9px;
|
||||||
|
font-weight: 600;
|
||||||
|
letter-spacing: 0.28em;
|
||||||
|
text-transform: uppercase;
|
||||||
|
cursor: pointer;
|
||||||
|
transition: all var(--transition);
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
|
|
||||||
|
.signup-form .btn-primary:hover {
|
||||||
|
background: var(--gold);
|
||||||
|
border-color: var(--gold);
|
||||||
|
color: var(--warm-white);
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Gold rule above the notice */
|
||||||
|
.signup-notice-rule {
|
||||||
|
width: 60px;
|
||||||
|
height: 1px;
|
||||||
|
background: linear-gradient(
|
||||||
|
to right,
|
||||||
|
transparent,
|
||||||
|
var(--gold),
|
||||||
|
transparent
|
||||||
|
);
|
||||||
|
margin: 0 auto 24px;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* ============================================================
|
/* ============================================================
|
||||||
|
|||||||
Reference in New Issue
Block a user