2025-11-27 13:48:24 +07:00
|
|
|
.login-container-wrapper {
|
|
|
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
|
|
|
min-height: 100vh;
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
color: #333;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.login-container {
|
|
|
|
|
background: white;
|
|
|
|
|
border-radius: 20px;
|
|
|
|
|
padding: 40px;
|
|
|
|
|
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
|
|
|
|
|
width: 100%;
|
|
|
|
|
max-width: 500px;
|
2025-12-10 16:39:13 +07:00
|
|
|
|
|
|
|
|
&-language {
|
|
|
|
|
position: fixed;
|
|
|
|
|
right: 20px;
|
|
|
|
|
top: 20px;
|
|
|
|
|
}
|
2025-11-27 13:48:24 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.logo {
|
|
|
|
|
text-align: center;
|
|
|
|
|
margin-bottom: 30px;
|
|
|
|
|
|
|
|
|
|
h1 {
|
|
|
|
|
font-size: 28px;
|
|
|
|
|
font-weight: 700;
|
|
|
|
|
color: #1f2937;
|
|
|
|
|
margin-bottom: 5px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-group {
|
2025-12-09 18:41:40 +07:00
|
|
|
margin-bottom: 18px;
|
2026-01-29 14:34:04 +07:00
|
|
|
}
|
2026-01-14 18:15:52 +07:00
|
|
|
|
2026-01-29 14:34:04 +07:00
|
|
|
.form-switcher {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 10px;
|
2026-01-29 14:48:54 +07:00
|
|
|
margin-bottom: 10px;
|
2026-01-29 14:34:04 +07:00
|
|
|
|
|
|
|
|
&-button {
|
2026-01-29 14:48:54 +07:00
|
|
|
padding: 5px 15px;
|
2026-01-29 14:34:04 +07:00
|
|
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
opacity: 0.6;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
&.active {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
|
opacity: 0.5;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:hover:not(:disabled) {
|
|
|
|
|
transform: translateY(-2px);
|
|
|
|
|
}
|
2026-01-14 18:15:52 +07:00
|
|
|
}
|
2025-11-27 13:48:24 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-row {
|
|
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 1fr 1fr;
|
|
|
|
|
gap: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-label {
|
|
|
|
|
display: block;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
color: #374151;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-label.required::after {
|
|
|
|
|
content: ' *';
|
|
|
|
|
color: #dc2626;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-input {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 12px 16px;
|
|
|
|
|
border: 2px solid #e5e7eb;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
transition: all 0.3s;
|
|
|
|
|
background: #f9fafb;
|
2025-12-09 16:35:47 +07:00
|
|
|
|
2026-01-29 14:34:04 +07:00
|
|
|
&-hidden {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
|
|
|
|
|
2025-12-09 16:35:47 +07:00
|
|
|
&[type="password"]::-ms-reveal {
|
|
|
|
|
display: none;
|
|
|
|
|
}
|
2025-12-22 14:30:25 +07:00
|
|
|
|
|
|
|
|
&.password {
|
|
|
|
|
padding-right: 32px;
|
|
|
|
|
}
|
2025-11-27 13:48:24 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.form-options {
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
align-items: center;
|
2025-12-09 18:41:40 +07:00
|
|
|
margin-bottom: 18px;
|
2025-11-27 13:48:24 +07:00
|
|
|
}
|
|
|
|
|
|
2025-12-09 16:35:47 +07:00
|
|
|
.form-error {
|
|
|
|
|
color: #fb2c36;
|
|
|
|
|
font-size: .875rem;
|
|
|
|
|
margin-bottom: 15px;
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-27 13:48:24 +07:00
|
|
|
.form-checkbox {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
|
|
|
|
|
input {
|
|
|
|
|
width: 18px;
|
|
|
|
|
height: 18px;
|
|
|
|
|
margin-right: 10px;
|
|
|
|
|
accent-color: #6366f1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
label {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: #6366f1;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.forgot-password {
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
color: #6366f1;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
transition: color 0.3s;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.btn {
|
|
|
|
|
width: 100%;
|
|
|
|
|
padding: 14px;
|
|
|
|
|
background: linear-gradient(135deg, #6366f1, #8b5cf6);
|
|
|
|
|
color: white;
|
|
|
|
|
border: none;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
font-size: 16px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: all 0.3s;
|
2025-12-09 18:41:40 +07:00
|
|
|
margin-bottom: 18px;
|
2025-12-09 18:08:58 +07:00
|
|
|
margin: 20px 0 0 0;
|
2026-01-26 13:04:13 +07:00
|
|
|
|
2026-01-29 14:34:04 +07:00
|
|
|
&:hover:not(:disabled) {
|
2026-01-26 13:04:13 +07:00
|
|
|
transform: translateY(-2px);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&:disabled {
|
2026-02-17 18:20:50 +07:00
|
|
|
opacity: 0.5;
|
2026-01-26 13:04:13 +07:00
|
|
|
background: linear-gradient(135deg, #414291, #4b3975);
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
transform: none;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
&.refresh {
|
2026-02-27 14:18:14 +07:00
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 3px;
|
2026-03-03 11:27:19 +07:00
|
|
|
white-space: nowrap;
|
2026-01-26 13:04:13 +07:00
|
|
|
}
|
2025-11-27 13:48:24 +07:00
|
|
|
}
|
|
|
|
|
|
2026-01-14 18:15:52 +07:00
|
|
|
.form-group-confrim-window {
|
2026-02-27 14:18:14 +07:00
|
|
|
min-width: 500px;
|
|
|
|
|
|
|
|
|
|
&-button-group {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
gap: 10px;
|
2026-03-05 12:10:14 +07:00
|
|
|
display: grid;
|
|
|
|
|
grid-template-columns: 50% 50%;
|
2026-02-27 14:18:14 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@media (max-width: 550px) {
|
|
|
|
|
min-width: auto;
|
|
|
|
|
|
|
|
|
|
&-button-group {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
gap: 10px;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-01-14 18:15:52 +07:00
|
|
|
.btn {
|
|
|
|
|
margin: 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2025-11-27 13:48:24 +07:00
|
|
|
.register-link {
|
|
|
|
|
text-align: center;
|
2025-12-09 18:41:40 +07:00
|
|
|
margin-top: 18px;
|
2025-11-27 13:48:24 +07:00
|
|
|
|
|
|
|
|
a {
|
|
|
|
|
color: #6366f1;
|
|
|
|
|
text-decoration: none;
|
|
|
|
|
font-weight: 500;
|
|
|
|
|
transition: color 0.3s;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.features {
|
|
|
|
|
margin-top: 30px;
|
|
|
|
|
padding-top: 20px;
|
|
|
|
|
border-top: 1px solid #e5e7eb;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature {
|
|
|
|
|
display: flex;
|
|
|
|
|
align-items: center;
|
|
|
|
|
margin-bottom: 10px;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
color: #6b7280;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.feature-icon {
|
|
|
|
|
width: 16px;
|
|
|
|
|
height: 16px;
|
|
|
|
|
margin-right: 8px;
|
|
|
|
|
color: #10b981;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.subscription-info {
|
|
|
|
|
background: #f0f9ff;
|
|
|
|
|
border: 1px solid #bae6fd;
|
|
|
|
|
border-radius: 10px;
|
|
|
|
|
padding: 15px;
|
2025-12-09 18:41:40 +07:00
|
|
|
margin-bottom: 18px;
|
2025-11-27 13:48:24 +07:00
|
|
|
|
|
|
|
|
h4 {
|
|
|
|
|
color: #0369a1;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: 600;
|
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
p {
|
|
|
|
|
color: #0c4a6e;
|
|
|
|
|
font-size: 13px;
|
|
|
|
|
line-height: 1.4;
|
|
|
|
|
}
|
2025-12-15 12:22:42 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.password-wrapper {
|
|
|
|
|
position: relative;
|
2025-11-27 13:48:24 +07:00
|
|
|
}
|