Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
206 changes: 206 additions & 0 deletions src/src/static/css/auth.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,206 @@
/* Authentication Pages Styles */

.auth-container {
min-height: calc(100vh - 50px);
display: flex;
align-items: center;
justify-content: center;
padding: 24px;
margin-top: 50px;
}

.auth-card {
width: 100%;
max-width: 500px;
background: #1A2332;
border: 1px solid #2C3E50;
border-radius: 12px;
padding: 48px 40px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.auth-header {
text-align: center;
margin-bottom: 32px;
}

.auth-title {
font-size: 28px;
font-weight: 700;
color: #F0E5D8;
margin-bottom: 8px;
}

.auth-subtitle {
font-size: 14px;
color: #E8EDF2;
line-height: 1.6;
}

.section-title {
font-size: 16px;
font-weight: 600;
color: #F0E5D8;
margin: 24px 0 16px;
padding-bottom: 8px;
border-bottom: 1px solid #2C3E50;
}

.section-title:first-of-type {
margin-top: 0;
}

.form-group {
margin-bottom: 20px;
}

.form-label {
display: block;
font-size: 13px;
font-weight: 500;
color: #E8EDF2;
margin-bottom: 8px;
}

.form-input {
width: 100%;
padding: 12px 16px;
background: #0A0E27;
border: 1px solid #2C3E50;
border-radius: 6px;
color: #E8EDF2;
font-size: 14px;
transition: all 0.3s;
}

.form-input:focus {
outline: none;
border-color: #FF6B35;
background: #1A2332;
box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-input::placeholder {
color: #858585;
}

.password-requirements {
margin-bottom: 16px;
padding: 12px;
background: #0A0E27;
border: 1px solid #2C3E50;
border-radius: 6px;
}

.password-requirements p {
font-size: 13px;
color: #E8EDF2;
margin-bottom: 8px;
}

.password-requirements ul {
list-style: none;
padding: 0;
margin: 0;
}

.password-requirements li {
font-size: 12px;
color: #858585;
padding: 4px 0;
padding-left: 20px;
position: relative;
}

.password-requirements li::before {
content: "•";
position: absolute;
left: 8px;
color: #FF6B35;
}

.form-footer {
display: flex;
align-items: center;
justify-content: space-between;
margin-top: 24px;
flex-wrap: wrap;
gap: 12px;
}

.form-link {
font-size: 14px;
color: #858585;
}

.form-link a {
color: #FF6B35;
text-decoration: none;
font-weight: 500;
}

.form-link a:hover {
text-decoration: underline;
color: #FF8555;
}

.submit-btn {
padding: 12px 24px;
background: linear-gradient(135deg, #FF6B35 0%, #FF8555 100%);
color: #fff;
border: none;
border-radius: 6px;
font-size: 14px;
font-weight: 500;
cursor: pointer;
transition: all 0.3s;
}

.submit-btn:hover {
background: linear-gradient(135deg, #FF8555 0%, #FF6B35 100%);
transform: translateY(-2px);
box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
}

.submit-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
transform: none;
}

.messages {
max-width: 500px;
margin: 0 auto 20px;
}

.message {
padding: 12px 16px;
border-radius: 6px;
margin-bottom: 12px;
border-left: 4px solid;
font-size: 14px;
}

.message.error {
background: rgba(229, 62, 62, 0.15);
border-color: #E53E3E;
color: #E53E3E;
}

.message.success {
background: rgba(72, 187, 120, 0.15);
border-color: #48BB78;
color: #48BB78;
}

.message.info {
background: rgba(255, 107, 53, 0.15);
border-color: #FF6B35;
color: #FF6B35;
}

.message.warning {
background: rgba(212, 165, 116, 0.15);
border-color: #D4A574;
color: #D4A574;
}
Loading
Loading