mirror of
https://github.com/xodivorce/xeorl.git
synced 2025-12-20 00:29:34 +05:30
v4.0.0
This commit is contained in:
564
htdocs/assets/css/_forgot_pass.css
Normal file
564
htdocs/assets/css/_forgot_pass.css
Normal file
@@ -0,0 +1,564 @@
|
||||
/* General Reset */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:root {
|
||||
/* Color Variables */
|
||||
--background-color: #c1c2c4;
|
||||
--container-bg: #2E2A42;
|
||||
--input-color: #666178;
|
||||
--left-bg: #e3e3e7;
|
||||
--right-bg: #ffffff;
|
||||
--primary-color: #e3e3e7;
|
||||
--secondary-color: #858290;
|
||||
--trio-color: #387fff;
|
||||
--quadro-color: #677583;
|
||||
--hover-color: #b5b5b6da;
|
||||
--button-color: #4e4d4f;
|
||||
--button-bg: #e3e3e7;
|
||||
--input-field: #F8F8FD;
|
||||
--text-white: #171C24;
|
||||
--text-shadow: rgba(0, 0, 0, 0.7);
|
||||
--transparent-white: #b5b5b6da;
|
||||
|
||||
/* Font Variables */
|
||||
--main-font: "Mulish", sans-serif;
|
||||
--heading-font: "Mulish", sans-serif;
|
||||
--body-font: "Mulish", sans-serif;
|
||||
--button-font: "Mulish", sans-serif;
|
||||
|
||||
/* Font Sizes */
|
||||
--font-size-small: 12px;
|
||||
--font-size-medium: 14px;
|
||||
--font-size-large: 16px;
|
||||
--font-size-h2: 28px;
|
||||
--font-size-h2-large: 35px;
|
||||
|
||||
/* Font Weights */
|
||||
--font-weight-light: 100;
|
||||
--font-weight-regular: 350;
|
||||
--font-weight-bold: 350;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--main-font);
|
||||
background-color:var(--background-color);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
/* Container Styling */
|
||||
.container {
|
||||
display: flex;
|
||||
width: 950px;
|
||||
height: 550px;
|
||||
background-color: var(--container-bg);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
/* Left Section Styling */
|
||||
.left-section {
|
||||
flex: 1;
|
||||
position: relative;
|
||||
background-color: var(--left-bg);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
padding: 20px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.header h1{
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: var(--text-white);
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.header .logo {
|
||||
width: 45%;
|
||||
height: 80%;
|
||||
margin-left: 15px;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
.back-button {
|
||||
font-family: var(--button-font);
|
||||
font-weight: var(--font-weight-regular);
|
||||
background: var(--button-bg);
|
||||
color: var(--text-white);
|
||||
border: 1px solid var(--button-color);
|
||||
border-radius: 20px;
|
||||
padding: 10px 20px;
|
||||
cursor: pointer;
|
||||
transition: background 0.3s;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.back-button:hover {
|
||||
background: var(--transparent-white);
|
||||
}
|
||||
|
||||
.background-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 0;
|
||||
opacity: 1;
|
||||
transition: opacity 1s ease-in-out;
|
||||
}
|
||||
|
||||
.content {
|
||||
z-index: 0;
|
||||
color: var(--text-white);
|
||||
text-shadow: 0 2px 10px var(--text-shadow);
|
||||
}
|
||||
|
||||
.content h2 {
|
||||
font-family: var(--heading-font);
|
||||
font-weight: var(--font-weight-bold);
|
||||
font-size: var(--font-size-h2);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Right Section Styling */
|
||||
.right-section {
|
||||
flex: 1;
|
||||
padding: 50px 40px;
|
||||
background-color: var(--right-bg);
|
||||
}
|
||||
|
||||
.form-container {
|
||||
font-family: var(--body-font);
|
||||
color: var(--text-white);
|
||||
}
|
||||
|
||||
.form-container h2 {
|
||||
font-family: var(--heading-font);
|
||||
font-weight: var(--font-weight-bold);
|
||||
font-size: var(--font-size-h2-large);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.form-container p {
|
||||
margin-bottom: 20px;
|
||||
color: var(--quadro-color);
|
||||
font-size: var(--font-size-medium);
|
||||
font-weight: var(--font-weight-light);
|
||||
}
|
||||
|
||||
.form-container a {
|
||||
color: var(--trio-color);
|
||||
}
|
||||
|
||||
.form-container a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.input-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 15px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.input-field {
|
||||
padding: 12px;
|
||||
font-family: var(--body-font);
|
||||
font-weight: var(--font-weight-regular);
|
||||
border: 1px solid var(--container-bg);
|
||||
border-radius: 5px;
|
||||
width: 48%;
|
||||
background-color: var(--input-field);
|
||||
color: var(--text-white);
|
||||
}
|
||||
|
||||
.input-field.full-width {
|
||||
width: 100%;
|
||||
margin-bottom: 10px;
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
.input-field:focus {
|
||||
border-color: var(--input-color);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.eye-icon {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 40%;
|
||||
transform: translateY(-50%);
|
||||
cursor: pointer;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.eye-icon:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.custom-checkbox {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.checkbox-container label {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
font-size: var(--font-size-small);
|
||||
color: var(--text-white);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.checkbox-container label::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
background-color: white;
|
||||
border: 1px solid var(--text-white);
|
||||
border-radius: 3px;
|
||||
margin-right: 10px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.custom-checkbox:checked + label::before {
|
||||
background-color: var(--text-white);
|
||||
border: 1px solid var(--text-white);
|
||||
}
|
||||
|
||||
.custom-checkbox:checked + label::after {
|
||||
content: "✓";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 4.6%;
|
||||
transform: translate(-50%, -50%);
|
||||
font-size: 16px;
|
||||
color: var(--right-bg);
|
||||
}
|
||||
.checkbox-container p {
|
||||
font-size: 12px; /* Adjust to desired size */
|
||||
color: var(--quadro-color); /* Optional: matching color */
|
||||
}
|
||||
/* Flex container for Remember me and Forgot password */
|
||||
.checkbox-forgot-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center; /* Align the checkbox label and link in the middle */
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Style for Forgot password link */
|
||||
.forgot-password-link {
|
||||
font-size: var(--font-size-medium);
|
||||
color: var(--trio-color);
|
||||
text-decoration: underline; /* Keep underline on link */
|
||||
margin-left: 10px; /* Add spacing to push the link to the right of the checkbox */
|
||||
}
|
||||
|
||||
/* Adjust spacing between the checkbox and the link */
|
||||
.checkbox-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* Style for the beta functionality paragraph */
|
||||
.beta-notice {
|
||||
font-size: 13.3px !important; /* Force the font size to apply */
|
||||
color: var(--quadro-color);
|
||||
margin-top: 5px; /* Space below the checkbox container */
|
||||
line-height: 1.4; /* Adjust line-height for better readability */
|
||||
word-break: break-word; /* Ensure long words break correctly */
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
font-family: var(--button-font);
|
||||
font-weight: var(--font-weight-bold);
|
||||
background-color: var(--primary-color);
|
||||
border: none;
|
||||
color: var(--text-white);
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
font-size: var(--font-size-large);
|
||||
border: 1px solid var(--button-color);
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
.submit-button:hover {
|
||||
background-color: var(--hover-color);
|
||||
}
|
||||
|
||||
.divider {
|
||||
text-align: center;
|
||||
font-size: var(--font-size-medium);
|
||||
margin: 20px 0;
|
||||
color: var(--input-color);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.divider::before,
|
||||
.divider::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 34%;
|
||||
height: 1px;
|
||||
background-color: var(--input-color);
|
||||
}
|
||||
|
||||
.divider::before {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.divider::after {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.social-login {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.google-btn, .apple-btn {
|
||||
width: 48%;
|
||||
padding: 12px;
|
||||
font-family: var(--button-font);
|
||||
background-color: var(--left-bg);
|
||||
color: var(--text-white);
|
||||
border: 1px solid var(--button-color);
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s, border-color 0.3s;
|
||||
}
|
||||
.google-btn:hover, .apple-btn:hover {
|
||||
background-color: var(--hover-color);
|
||||
}
|
||||
|
||||
.google-btn img, .apple-btn img {
|
||||
margin-right: 10px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.resend-code {
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
||||
@media (max-width: 990px) {
|
||||
/* Adjust text sizes */
|
||||
body {
|
||||
font-size: 14px; /* Adjust base font size */
|
||||
}
|
||||
.container {
|
||||
width: 900px;
|
||||
height: 500px;
|
||||
margin: 0 5%;
|
||||
}
|
||||
|
||||
.logo{
|
||||
width: 180px;
|
||||
}
|
||||
|
||||
.content h2 {
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
.back-button{
|
||||
font-size: 12px;
|
||||
padding: 9px 18px;
|
||||
cursor: pointer;
|
||||
transition: background 0.3s;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.form-container h1 {
|
||||
font-size: 24px; /* Adjust header size */
|
||||
}
|
||||
|
||||
.form-container h2 {
|
||||
font-size: 30px; /* Adjust subheader size */
|
||||
}
|
||||
|
||||
.form-container p {
|
||||
font-size: 12px; /* Adjust paragraph size */
|
||||
}
|
||||
.input-field {
|
||||
padding: 12px;
|
||||
border: 0.5px solid var(--container-bg);
|
||||
border-radius: 5px;
|
||||
width: 48%;
|
||||
}
|
||||
.input-container {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.eye-icon {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 40%;
|
||||
transform: translateY(-50%);
|
||||
cursor: pointer;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
.checkbox-container label::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background-color: #171C24;
|
||||
border: 1px solid var(--right-bg);
|
||||
border-radius: 3px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
.custom-checkbox:checked + label::after {
|
||||
top: 50%;
|
||||
left: 4.0%;
|
||||
font-size: 14px;
|
||||
}
|
||||
.checkbox-container p {
|
||||
font-size: 12px;
|
||||
}
|
||||
.checkbox-container label {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
font-size: 11px;
|
||||
color: var(--text-white);
|
||||
cursor: pointer;
|
||||
}
|
||||
.forgot-password-link {
|
||||
font-size: 12px;
|
||||
margin-left: 10px; /* Add spacing to push the link to the right of the checkbox */
|
||||
}
|
||||
.beta-notice {
|
||||
font-size: 12px !important; /* Force the font size to apply */
|
||||
}
|
||||
.submit-button {
|
||||
width: 100%;
|
||||
margin-top: -10px;
|
||||
padding: 8px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.divider {
|
||||
text-align: center;
|
||||
font-size: var(--font-size-medium);
|
||||
margin: 10px 0;
|
||||
margin-top: 10px;
|
||||
color: var(--input-color);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.google-btn, .apple-btn {
|
||||
width: 48%;
|
||||
padding: 10px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
.google-btn img, .apple-btn img {
|
||||
margin-right: 10px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 838px) {
|
||||
.header {
|
||||
display: none; /* Hide the header with logo and back button */
|
||||
}
|
||||
|
||||
.container {
|
||||
flex-direction: column;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.left-section {
|
||||
display: none; /* Hide the left section */
|
||||
}
|
||||
|
||||
.right-section {
|
||||
width: 100%;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.form-container {
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 450px) {
|
||||
.container {
|
||||
width: 90%; /* Keep responsive */
|
||||
max-width: 300px; /* Reduce maximum width */
|
||||
margin: auto; /* Center the container */
|
||||
height: auto; /* Allow height to adjust based on content */
|
||||
}
|
||||
.eye-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.form-container {
|
||||
padding: 5px; /* Reduce padding */
|
||||
margin: 0; /* Remove margins */
|
||||
}
|
||||
|
||||
.input-field {
|
||||
padding: 10px; /* Reduce input padding */
|
||||
margin-top: -2px; /* Space between input fields */
|
||||
}
|
||||
|
||||
|
||||
.checkbox-forgot-container {
|
||||
display: flex; /* Keep them in one line */
|
||||
justify-content: space-between; /* Space between elements */
|
||||
align-items: center; /* Center vertically */
|
||||
margin-top: -10px;
|
||||
flex-wrap: nowrap;
|
||||
margin-bottom: 5px; /* Reduce space below */
|
||||
}
|
||||
|
||||
.beta-notice {
|
||||
font-size: 11px; /* Reduce font size for less height */
|
||||
margin-top: 3px; /* Further reduce top margin */
|
||||
}
|
||||
|
||||
.forgot-password-link {
|
||||
margin-right: 0; /* Remove margin to the right */
|
||||
}
|
||||
.divider {
|
||||
text-align: center;
|
||||
font-size: var(--font-size-medium);
|
||||
margin: 8px 0;
|
||||
margin-top: 10px;
|
||||
color: var(--input-color);
|
||||
position: relative;
|
||||
}
|
||||
.divider::before,
|
||||
.divider::after {
|
||||
top: 50%;
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -1,13 +1,16 @@
|
||||
header {
|
||||
padding: 20px;
|
||||
background-color: #ffffff;
|
||||
border-bottom: 1px solid #F2F2F2;
|
||||
position: fixed;
|
||||
top: 0;
|
||||
width: 97%;
|
||||
z-index: 1000;
|
||||
}
|
||||
|
||||
.header.scrolled {
|
||||
border-bottom: 1px solid #F2F2F2;
|
||||
}
|
||||
|
||||
.header-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
|
||||
@@ -59,6 +59,9 @@ main {
|
||||
outline: none;
|
||||
box-sizing: border-box;
|
||||
transition: box-shadow 0.3s ease;
|
||||
user-select: text; /* Allow text selection and enable pasting */
|
||||
-webkit-user-select: text; /* For Safari */
|
||||
-moz-user-select: text; /* For Firefox */
|
||||
}
|
||||
|
||||
.shorten-form input::placeholder {
|
||||
@@ -219,21 +222,12 @@ main {
|
||||
background: #ffffff;
|
||||
padding: 25px; /* Reduce padding for a more compact look */
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.082);
|
||||
width: 250px; /* Reduce width */
|
||||
width: 180px; /* Reduce width */
|
||||
text-align: center;
|
||||
transition: box-shadow 0.3s ease, transform 0.3s ease;
|
||||
cursor: pointer;
|
||||
margin-top: 10px;
|
||||
margin-bottom: 4em;
|
||||
}
|
||||
|
||||
.stat-item:hover,
|
||||
.stat-item:focus {
|
||||
transform: translateY(-3px); /* Slight lift */
|
||||
box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12); /* Adjust shadow strength */
|
||||
}
|
||||
|
||||
.stat-icon {
|
||||
width: 35px;
|
||||
height: 35px;
|
||||
@@ -292,14 +286,20 @@ main {
|
||||
color: #677583;
|
||||
text-align: center;
|
||||
}
|
||||
.section-paragraph{
|
||||
color:#3C4B62;
|
||||
|
||||
.section-paragraph {
|
||||
max-width: 620px;
|
||||
margin: 1em auto;
|
||||
font-size: 18px;
|
||||
line-height: 30px;
|
||||
margin-top: 25px;
|
||||
margin-bottom: 45px;
|
||||
line-height: 1.8;
|
||||
color: #3C4B62;
|
||||
text-align: center;
|
||||
padding: 0 15px;
|
||||
word-wrap: break-word; /* Ensures text breaks within the container */
|
||||
white-space: normal; /* Allows normal text wrapping */
|
||||
}
|
||||
|
||||
|
||||
.contact-link {
|
||||
color: #387FFF;
|
||||
text-decoration: none;
|
||||
@@ -324,6 +324,30 @@ main {
|
||||
transform: scaleX(1);
|
||||
}
|
||||
|
||||
.how-to-start-section .section-paragraph{
|
||||
margin-bottom: 2em;
|
||||
|
||||
}
|
||||
.how-to-start-section .steps-list {
|
||||
text-align: left; /* Align steps to the left for a clean flow */
|
||||
margin: 0 auto;
|
||||
max-width: 600px; /* Constrain the steps' width */
|
||||
margin-bottom: 2em;
|
||||
}
|
||||
|
||||
.how-to-start-section .steps-list h3 {
|
||||
font-size: 1.2rem;
|
||||
margin-top: 20px;
|
||||
margin: 0.5rem 0; /* Adjust vertical spacing */
|
||||
color: #171C24;
|
||||
}
|
||||
|
||||
.how-to-start-section .steps-list p {
|
||||
font-size: 18px;
|
||||
color: #3C4B62;
|
||||
margin: 0.5rem 0 1rem; /* Adjust spacing between text blocks */
|
||||
padding-left: 1.5rem; /* Add indentation to the descriptions */
|
||||
}
|
||||
|
||||
/* For screens 768px and below */
|
||||
@media (max-width: 768px) {
|
||||
|
||||
560
htdocs/assets/css/_login.css
Normal file
560
htdocs/assets/css/_login.css
Normal file
@@ -0,0 +1,560 @@
|
||||
/* General Reset */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:root {
|
||||
/* Color Variables */
|
||||
--background-color: #c1c2c4;
|
||||
--container-bg: #2E2A42;
|
||||
--input-color: #666178;
|
||||
--left-bg: #e3e3e7;
|
||||
--right-bg: #ffffff;
|
||||
--primary-color: #e3e3e7;
|
||||
--secondary-color: #858290;
|
||||
--trio-color: #387fff;
|
||||
--quadro-color: #677583;
|
||||
--hover-color: #b5b5b6da;
|
||||
--button-color: #4e4d4f;
|
||||
--button-bg: #e3e3e7;
|
||||
--input-field: #F8F8FD;
|
||||
--text-white: #171C24;
|
||||
--text-shadow: rgba(0, 0, 0, 0.7);
|
||||
--transparent-white: #b5b5b6da;
|
||||
|
||||
/* Font Variables */
|
||||
--main-font: "Mulish", sans-serif;
|
||||
--heading-font: "Mulish", sans-serif;
|
||||
--body-font: "Mulish", sans-serif;
|
||||
--button-font: "Mulish", sans-serif;
|
||||
|
||||
/* Font Sizes */
|
||||
--font-size-small: 12px;
|
||||
--font-size-medium: 14px;
|
||||
--font-size-large: 16px;
|
||||
--font-size-h2: 28px;
|
||||
--font-size-h2-large: 35px;
|
||||
|
||||
/* Font Weights */
|
||||
--font-weight-light: 100;
|
||||
--font-weight-regular: 350;
|
||||
--font-weight-bold: 350;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--main-font);
|
||||
background-color:var(--background-color);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
/* Container Styling */
|
||||
.container {
|
||||
display: flex;
|
||||
width: 950px;
|
||||
height: 550px;
|
||||
background-color: var(--container-bg);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
/* Left Section Styling */
|
||||
.left-section {
|
||||
flex: 1;
|
||||
position: relative;
|
||||
background-color: var(--left-bg);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
padding: 20px;
|
||||
z-index: 1;
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.header h1{
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: var(--text-white);
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.header .logo {
|
||||
width: 45%;
|
||||
height: 80%;
|
||||
margin-left: 15px;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
.back-button {
|
||||
font-family: var(--button-font);
|
||||
font-weight: var(--font-weight-regular);
|
||||
background: var(--button-bg);
|
||||
color: var(--text-white);
|
||||
border: 1px solid var(--button-color);
|
||||
border-radius: 20px;
|
||||
padding: 10px 20px;
|
||||
cursor: pointer;
|
||||
transition: background 0.3s;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.back-button:hover {
|
||||
background: var(--transparent-white);
|
||||
}
|
||||
|
||||
.background-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 0;
|
||||
opacity: 1;
|
||||
transition: opacity 1s ease-in-out;
|
||||
}
|
||||
|
||||
.content {
|
||||
z-index: 0;
|
||||
color: var(--text-white);
|
||||
text-shadow: 0 2px 10px var(--text-shadow);
|
||||
}
|
||||
|
||||
.content h2 {
|
||||
font-family: var(--heading-font);
|
||||
font-weight: var(--font-weight-bold);
|
||||
font-size: var(--font-size-h2);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Right Section Styling */
|
||||
.right-section {
|
||||
flex: 1;
|
||||
padding: 50px 40px;
|
||||
background-color: var(--right-bg);
|
||||
}
|
||||
|
||||
.form-container {
|
||||
font-family: var(--body-font);
|
||||
color: var(--text-white);
|
||||
}
|
||||
|
||||
.form-container h2 {
|
||||
font-family: var(--heading-font);
|
||||
font-weight: var(--font-weight-bold);
|
||||
font-size: var(--font-size-h2-large);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.form-container p {
|
||||
margin-bottom: 20px;
|
||||
color: var(--quadro-color);
|
||||
font-size: var(--font-size-medium);
|
||||
font-weight: var(--font-weight-light);
|
||||
}
|
||||
|
||||
.form-container a {
|
||||
color: var(--trio-color);
|
||||
}
|
||||
|
||||
.form-container a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.input-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 15px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.input-field {
|
||||
padding: 12px;
|
||||
font-family: var(--body-font);
|
||||
font-weight: var(--font-weight-regular);
|
||||
border: 1px solid var(--container-bg);
|
||||
border-radius: 5px;
|
||||
width: 48%;
|
||||
background-color: var(--input-field);
|
||||
color: var(--text-white);
|
||||
}
|
||||
|
||||
.input-field.full-width {
|
||||
width: 100%;
|
||||
margin-bottom: 10px;
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
.input-field:focus {
|
||||
border-color: var(--input-color);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.eye-icon {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 40%;
|
||||
transform: translateY(-50%);
|
||||
cursor: pointer;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.eye-icon:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
.custom-checkbox {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.checkbox-container label {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
font-size: var(--font-size-small);
|
||||
color: var(--text-white);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.checkbox-container label::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 14px;
|
||||
height: 14px;
|
||||
background-color: white;
|
||||
border: 1px solid var(--text-white);
|
||||
border-radius: 3px;
|
||||
margin-right: 10px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.custom-checkbox:checked + label::before {
|
||||
background-color: var(--text-white);
|
||||
border: 1px solid var(--text-white);
|
||||
}
|
||||
|
||||
.custom-checkbox:checked + label::after {
|
||||
content: "✓";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
left: 4.6%;
|
||||
transform: translate(-50%, -50%);
|
||||
font-size: 16px;
|
||||
color: var(--right-bg);
|
||||
}
|
||||
.checkbox-container p {
|
||||
font-size: 12px; /* Adjust to desired size */
|
||||
color: var(--quadro-color); /* Optional: matching color */
|
||||
}
|
||||
/* Flex container for Remember me and Forgot password */
|
||||
.checkbox-forgot-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center; /* Align the checkbox label and link in the middle */
|
||||
margin-bottom: 5px;
|
||||
}
|
||||
|
||||
/* Style for Forgot password link */
|
||||
.forgot-password-link {
|
||||
font-size: var(--font-size-medium);
|
||||
color: var(--trio-color);
|
||||
text-decoration: underline; /* Keep underline on link */
|
||||
margin-left: 10px; /* Add spacing to push the link to the right of the checkbox */
|
||||
}
|
||||
|
||||
/* Adjust spacing between the checkbox and the link */
|
||||
.checkbox-container {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
/* Style for the beta functionality paragraph */
|
||||
.beta-notice {
|
||||
font-size: 13.3px !important; /* Force the font size to apply */
|
||||
color: var(--quadro-color);
|
||||
margin-top: 5px; /* Space below the checkbox container */
|
||||
line-height: 1.4; /* Adjust line-height for better readability */
|
||||
word-break: break-word; /* Ensure long words break correctly */
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
font-family: var(--button-font);
|
||||
font-weight: var(--font-weight-bold);
|
||||
background-color: var(--primary-color);
|
||||
border: none;
|
||||
color: var(--text-white);
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
font-size: var(--font-size-large);
|
||||
border: 1px solid var(--button-color);
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
.submit-button:hover {
|
||||
background-color: var(--hover-color);
|
||||
}
|
||||
|
||||
.divider {
|
||||
text-align: center;
|
||||
font-size: var(--font-size-medium);
|
||||
margin: 20px 0;
|
||||
color: var(--input-color);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.divider::before,
|
||||
.divider::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 34%;
|
||||
height: 1px;
|
||||
background-color: var(--input-color);
|
||||
}
|
||||
|
||||
.divider::before {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.divider::after {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
.social-login {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.google-btn, .apple-btn {
|
||||
width: 48%;
|
||||
padding: 12px;
|
||||
font-family: var(--button-font);
|
||||
background-color: var(--left-bg);
|
||||
color: var(--text-white);
|
||||
border: 1px solid var(--button-color);
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s, border-color 0.3s;
|
||||
}
|
||||
.google-btn:hover, .apple-btn:hover {
|
||||
background-color: var(--hover-color);
|
||||
}
|
||||
|
||||
.google-btn img, .apple-btn img {
|
||||
margin-right: 10px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
@media (max-width: 990px) {
|
||||
/* Adjust text sizes */
|
||||
body {
|
||||
font-size: 14px; /* Adjust base font size */
|
||||
}
|
||||
.container {
|
||||
width: 900px;
|
||||
height: 500px;
|
||||
margin: 0 5%;
|
||||
}
|
||||
|
||||
.logo{
|
||||
width: 180px;
|
||||
}
|
||||
|
||||
.content h2 {
|
||||
font-size: 26px;
|
||||
}
|
||||
|
||||
.back-button{
|
||||
font-size: 12px;
|
||||
padding: 9px 18px;
|
||||
cursor: pointer;
|
||||
transition: background 0.3s;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.form-container h1 {
|
||||
font-size: 24px; /* Adjust header size */
|
||||
}
|
||||
|
||||
.form-container h2 {
|
||||
font-size: 30px; /* Adjust subheader size */
|
||||
}
|
||||
|
||||
.form-container p {
|
||||
font-size: 12px; /* Adjust paragraph size */
|
||||
}
|
||||
.input-field {
|
||||
padding: 12px;
|
||||
border: 0.5px solid var(--container-bg);
|
||||
border-radius: 5px;
|
||||
width: 48%;
|
||||
}
|
||||
.input-container {
|
||||
margin-bottom: 15px;
|
||||
}
|
||||
.eye-icon {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 40%;
|
||||
transform: translateY(-50%);
|
||||
cursor: pointer;
|
||||
width: 22px;
|
||||
height: 22px;
|
||||
}
|
||||
.checkbox-container label::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 12px;
|
||||
height: 12px;
|
||||
background-color: #171C24;
|
||||
border: 1px solid var(--right-bg);
|
||||
border-radius: 3px;
|
||||
margin-right: 8px;
|
||||
}
|
||||
.custom-checkbox:checked + label::after {
|
||||
top: 50%;
|
||||
left: 4.0%;
|
||||
font-size: 14px;
|
||||
}
|
||||
.checkbox-container p {
|
||||
font-size: 12px;
|
||||
}
|
||||
.checkbox-container label {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
font-size: 11px;
|
||||
color: var(--text-white);
|
||||
cursor: pointer;
|
||||
}
|
||||
.forgot-password-link {
|
||||
font-size: 12px;
|
||||
margin-left: 10px; /* Add spacing to push the link to the right of the checkbox */
|
||||
}
|
||||
.beta-notice {
|
||||
font-size: 12px !important; /* Force the font size to apply */
|
||||
}
|
||||
.submit-button {
|
||||
width: 100%;
|
||||
margin-top: -10px;
|
||||
padding: 8px;
|
||||
font-size: 14px;
|
||||
}
|
||||
.divider {
|
||||
text-align: center;
|
||||
font-size: var(--font-size-medium);
|
||||
margin: 10px 0;
|
||||
margin-top: 10px;
|
||||
color: var(--input-color);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.google-btn, .apple-btn {
|
||||
width: 48%;
|
||||
padding: 10px;
|
||||
margin-top: 3px;
|
||||
}
|
||||
.google-btn img, .apple-btn img {
|
||||
margin-right: 10px;
|
||||
width: 18px;
|
||||
height: 18px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 838px) {
|
||||
.header {
|
||||
display: none; /* Hide the header with logo and back button */
|
||||
}
|
||||
|
||||
.container {
|
||||
flex-direction: column;
|
||||
height: auto;
|
||||
}
|
||||
|
||||
.left-section {
|
||||
display: none; /* Hide the left section */
|
||||
}
|
||||
|
||||
.right-section {
|
||||
width: 100%;
|
||||
padding: 20px;
|
||||
}
|
||||
|
||||
.form-container {
|
||||
padding: 20px;
|
||||
}
|
||||
}
|
||||
@media (max-width: 450px) {
|
||||
.container {
|
||||
width: 90%; /* Keep responsive */
|
||||
max-width: 300px; /* Reduce maximum width */
|
||||
margin: auto; /* Center the container */
|
||||
height: auto; /* Allow height to adjust based on content */
|
||||
}
|
||||
.eye-icon {
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
|
||||
.form-container {
|
||||
padding: 5px; /* Reduce padding */
|
||||
margin: 0; /* Remove margins */
|
||||
}
|
||||
|
||||
.input-field {
|
||||
padding: 10px; /* Reduce input padding */
|
||||
margin-top: -2px; /* Space between input fields */
|
||||
}
|
||||
|
||||
|
||||
.checkbox-forgot-container {
|
||||
display: flex; /* Keep them in one line */
|
||||
justify-content: space-between; /* Space between elements */
|
||||
align-items: center; /* Center vertically */
|
||||
margin-top: -10px;
|
||||
flex-wrap: nowrap;
|
||||
margin-bottom: 5px; /* Reduce space below */
|
||||
}
|
||||
|
||||
.beta-notice {
|
||||
font-size: 11px; /* Reduce font size for less height */
|
||||
margin-top: 3px; /* Further reduce top margin */
|
||||
}
|
||||
|
||||
.forgot-password-link {
|
||||
margin-right: 0; /* Remove margin to the right */
|
||||
}
|
||||
.divider {
|
||||
text-align: center;
|
||||
font-size: var(--font-size-medium);
|
||||
margin: 8px 0;
|
||||
margin-top: 10px;
|
||||
color: var(--input-color);
|
||||
position: relative;
|
||||
}
|
||||
.divider::before,
|
||||
.divider::after {
|
||||
top: 50%;
|
||||
width: 30%;
|
||||
}
|
||||
|
||||
}
|
||||
349
htdocs/assets/css/_register.css
Normal file
349
htdocs/assets/css/_register.css
Normal file
@@ -0,0 +1,349 @@
|
||||
/* General Reset */
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
:root {
|
||||
/* Color Variables */
|
||||
--background-color: #c1c2c4;
|
||||
--container-bg: #2E2A42;
|
||||
--input-color: #666178;
|
||||
--left-bg: #e3e3e7;
|
||||
--right-bg: #ffffff;
|
||||
--primary-color: #e3e3e7;
|
||||
--secondary-color: #858290;
|
||||
--trio-color: #387fff;
|
||||
--quadro-color: #677583;
|
||||
--hover-color: #b5b5b6da;
|
||||
--button-color: #4e4d4f;
|
||||
--button-bg: #e3e3e7;
|
||||
--input-field: #F8F8FD;
|
||||
--text-white: #171C24;
|
||||
--text-shadow: rgba(0, 0, 0, 0.7);
|
||||
--transparent-white: #b5b5b6da;
|
||||
|
||||
/* Font Variables */
|
||||
--main-font: "Mulish", sans-serif;
|
||||
--heading-font: "Mulish", sans-serif;
|
||||
--body-font: "Mulish", sans-serif;
|
||||
--button-font: "Mulish", sans-serif;
|
||||
|
||||
/* Font Sizes */
|
||||
--font-size-small: 12px;
|
||||
--font-size-medium: 14px;
|
||||
--font-size-large: 16px;
|
||||
--font-size-h2: 28px;
|
||||
--font-size-h2-large: 35px;
|
||||
|
||||
/* Font Weights */
|
||||
--font-weight-light: 100;
|
||||
--font-weight-regular: 350;
|
||||
--font-weight-bold: 350;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: var(--main-font);
|
||||
background-color: var(--background-color);
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
height: 100vh;
|
||||
padding: 0 20px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
/* Container Styling */
|
||||
.container {
|
||||
display: flex;
|
||||
width: 950px;
|
||||
height: 550px;
|
||||
background-color: var(--container-bg);
|
||||
border-radius: 12px;
|
||||
overflow: hidden;
|
||||
box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
|
||||
}
|
||||
|
||||
/* Left Section Styling */
|
||||
.left-section {
|
||||
flex: 1;
|
||||
position: relative;
|
||||
background-color: var(--left-bg);
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: space-between;
|
||||
padding: 20px;
|
||||
z-index: 1; /* Ensure it's above the background image */
|
||||
}
|
||||
|
||||
.header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
position: relative;
|
||||
z-index: 3; /* Bring the header above the background image */
|
||||
}
|
||||
|
||||
.header h1{
|
||||
font-size: 20px;
|
||||
font-weight: 500;
|
||||
color: var(--text-white);
|
||||
margin-left: 30px;
|
||||
}
|
||||
|
||||
.header .logo {
|
||||
width: 45%;
|
||||
height: 80%;
|
||||
margin-left: 15px;
|
||||
z-index: 9;
|
||||
}
|
||||
|
||||
.back-button {
|
||||
font-family: var(--button-font);
|
||||
font-weight: var(--font-weight-regular);
|
||||
background: var(--button-bg);
|
||||
color: var(--text-white);
|
||||
border: 1px solid var(--button-color);
|
||||
border-radius: 20px;
|
||||
padding: 10px 20px;
|
||||
cursor: pointer;
|
||||
transition: background 0.3s;
|
||||
z-index: 3;
|
||||
}
|
||||
|
||||
.back-button:hover {
|
||||
background: var(--transparent-white);
|
||||
}
|
||||
|
||||
.background-img {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
object-fit: cover;
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
z-index: 0;
|
||||
opacity: 1;
|
||||
transition: opacity 1s ease-in-out;
|
||||
}
|
||||
|
||||
|
||||
.content {
|
||||
z-index: 0;
|
||||
color: var(--text-white);
|
||||
text-shadow: 0 2px 10px var(--text-shadow);
|
||||
|
||||
}
|
||||
|
||||
.content h2 {
|
||||
font-family: var(--heading-font);
|
||||
font-weight: var(--font-weight-bold);
|
||||
font-size: var(--font-size-h2);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Right Section Styling */
|
||||
.right-section {
|
||||
flex: 1;
|
||||
padding: 50px 40px;
|
||||
background-color: var(--right-bg);
|
||||
}
|
||||
|
||||
.form-container {
|
||||
font-family: var(--body-font);
|
||||
color: var(--text-white);
|
||||
}
|
||||
|
||||
.form-container h2 {
|
||||
font-family: var(--heading-font);
|
||||
font-weight: var(--font-weight-bold);
|
||||
font-size: var(--font-size-h2-large);
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
|
||||
.form-container p {
|
||||
margin-bottom: 20px;
|
||||
color: var(--quadro-color);
|
||||
font-size: var(--font-size-medium);
|
||||
font-weight: var(--font-weight-light);
|
||||
}
|
||||
|
||||
.form-container a {
|
||||
color: var(--trio-color);
|
||||
}
|
||||
|
||||
.form-container a:hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.input-container {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
margin-bottom: 15px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.input-field {
|
||||
padding: 12px;
|
||||
font-family: var(--body-font);
|
||||
font-weight: var(--font-weight-regular);
|
||||
border: 1px solid var(--container-bg);
|
||||
border-radius: 5px;
|
||||
width: 48%;
|
||||
background-color: var(--input-field);
|
||||
color: var(--text-white);
|
||||
}
|
||||
|
||||
.input-field.full-width {
|
||||
width: 100%;
|
||||
margin-bottom: 10px;
|
||||
padding-right: 40px;
|
||||
}
|
||||
|
||||
.input-field:focus {
|
||||
border-color: var(--input-color);
|
||||
outline: none;
|
||||
}
|
||||
|
||||
.eye-icon {
|
||||
position: absolute;
|
||||
right: 15px;
|
||||
top: 40%;
|
||||
transform: translateY(-50%);
|
||||
cursor: pointer;
|
||||
width: 24px;
|
||||
height: 24px;
|
||||
}
|
||||
|
||||
.eye-icon:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
/* Hide the default checkbox */
|
||||
.custom-checkbox {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* Style the label to act as a custom checkbox */
|
||||
.checkbox-container label {
|
||||
position: relative;
|
||||
display: inline-flex;
|
||||
align-items: center;
|
||||
font-size: var(--font-size-small);
|
||||
color: var(--text-white);
|
||||
cursor: pointer;
|
||||
margin-bottom: 25px;
|
||||
}
|
||||
|
||||
/* Create a smaller custom checkbox */
|
||||
.checkbox-container label::before {
|
||||
content: "";
|
||||
display: inline-block;
|
||||
width: 14px; /* Smaller checkbox size */
|
||||
height: 14px; /* Smaller checkbox size */
|
||||
background-color: white; /* Checkbox background color */
|
||||
border: 1px solid var(--text-white);
|
||||
border-radius: 3px;
|
||||
margin-right: 10px;
|
||||
position: relative;
|
||||
}
|
||||
|
||||
/* Show checkmark when checked */
|
||||
.custom-checkbox:checked + label::before {
|
||||
background-color: var(--text-white); /* Keep the background color white */
|
||||
border: 1px solid var(--text-white);
|
||||
}
|
||||
|
||||
/* Add simple checkmark when checkbox is checked */
|
||||
.custom-checkbox:checked + label::after {
|
||||
content: "✓"; /* Simple checkmark */
|
||||
position: absolute;
|
||||
top: 50%; /* Center vertically */
|
||||
left: 4%; /* Center horizontally */
|
||||
transform: translate(-50%, -50%); /* Center the checkmark */
|
||||
font-size: 16px; /* Adjust size of the checkmark to fit the smaller checkbox */
|
||||
color: var(--right-bg); /* Color of the checkmark */
|
||||
}
|
||||
|
||||
.terms-link {
|
||||
margin-left: 5px; /* Adjust the value as needed */
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
width: 100%;
|
||||
padding: 12px;
|
||||
font-family: var(--button-font);
|
||||
font-weight: var(--font-weight-bold);
|
||||
background-color: var(--primary-color);
|
||||
border: none;
|
||||
color: var(--text-white);
|
||||
border-radius: 5px;
|
||||
cursor: pointer;
|
||||
font-size: var(--font-size-large);
|
||||
border: 1px solid var(--button-color);
|
||||
transition: background-color 0.3s;
|
||||
}
|
||||
|
||||
.submit-button:hover {
|
||||
background-color: var(--hover-color);
|
||||
}
|
||||
|
||||
|
||||
.divider {
|
||||
text-align: center;
|
||||
font-size: var(--font-size-medium);
|
||||
margin: 20px 0;
|
||||
color: var(--input-color);
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.divider::before,
|
||||
.divider::after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 50%;
|
||||
width: 34%;
|
||||
height: 1px;
|
||||
background-color: var(--input-color);
|
||||
}
|
||||
|
||||
.divider::before {
|
||||
left: 0;
|
||||
}
|
||||
|
||||
.divider::after {
|
||||
right: 0;
|
||||
}
|
||||
|
||||
/* Social Login Buttons */
|
||||
.social-login {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
}
|
||||
|
||||
.google-btn, .apple-btn {
|
||||
width: 48%;
|
||||
padding: 12px;
|
||||
font-family: var(--button-font);
|
||||
background-color: var(--left-bg);
|
||||
color: var(--text-white);
|
||||
border: 1px solid var(--button-color);
|
||||
border-radius: 5px;
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
align-items: center;
|
||||
cursor: pointer;
|
||||
transition: background-color 0.3s, border-color 0.3s;
|
||||
}
|
||||
|
||||
.google-btn:hover, .apple-btn:hover {
|
||||
background-color: var(--hover-color);
|
||||
}
|
||||
|
||||
.google-btn img, .apple-btn img {
|
||||
margin-right: 10px;
|
||||
width: 20px;
|
||||
height: 20px;
|
||||
}
|
||||
Reference in New Issue
Block a user