You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
99 lines
1.5 KiB
99 lines
1.5 KiB
.login-page { |
|
min-height: calc(100vh - 60px); |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
background-color: #f9f9f9; |
|
padding: 24px; |
|
} |
|
|
|
.login-container { |
|
width: 100%; |
|
max-width: 400px; |
|
background-color: white; |
|
border-radius: 8px; |
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1); |
|
overflow: hidden; |
|
} |
|
|
|
.login-header { |
|
padding: 32px 32px 24px; |
|
text-align: center; |
|
border-bottom: 1px solid #e5e5e5; |
|
} |
|
|
|
.login-header h1 { |
|
margin: 0 0 8px 0; |
|
font-size: 24px; |
|
font-weight: 500; |
|
color: #030303; |
|
} |
|
|
|
.login-header p { |
|
margin: 0; |
|
font-size: 14px; |
|
color: #606060; |
|
} |
|
|
|
.login-form { |
|
padding: 32px; |
|
} |
|
|
|
.login-error { |
|
padding: 12px; |
|
background-color: #fef2f2; |
|
color: #991b1b; |
|
border: 1px solid #fecaca; |
|
border-radius: 4px; |
|
font-size: 14px; |
|
margin-bottom: 24px; |
|
} |
|
|
|
.form-group { |
|
margin-bottom: 20px; |
|
} |
|
|
|
.form-group label { |
|
display: block; |
|
margin-bottom: 6px; |
|
font-size: 14px; |
|
font-weight: 500; |
|
color: #030303; |
|
} |
|
|
|
.form-group input { |
|
width: 100%; |
|
padding: 10px 12px; |
|
border: 1px solid #ccc; |
|
border-radius: 4px; |
|
font-size: 14px; |
|
box-sizing: border-box; |
|
} |
|
|
|
.form-group input:focus { |
|
outline: none; |
|
border-color: #065fd4; |
|
} |
|
|
|
.login-button { |
|
width: 100%; |
|
padding: 12px; |
|
background-color: #065fd4; |
|
color: white; |
|
border: none; |
|
border-radius: 4px; |
|
font-size: 14px; |
|
font-weight: 500; |
|
cursor: pointer; |
|
transition: background-color 0.2s; |
|
} |
|
|
|
.login-button:hover:not(:disabled) { |
|
background-color: #0556c4; |
|
} |
|
|
|
.login-button:disabled { |
|
opacity: 0.6; |
|
cursor: not-allowed; |
|
} |
|
|
|
|