electron-lisenser
Version:
An electronjs client for Lisenser service
115 lines (98 loc) • 1.79 kB
CSS
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
margin: 0;
padding: 0;
background: #f5f7fa;
color: #2d3748;
}
.container {
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
}
.license-form {
background: white;
padding: 30px;
border-radius: 12px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
width: 100%;
max-width: 500px;
}
.form-header {
text-align: center;
margin-bottom: 24px;
}
.title {
font-size: 24px;
font-weight: 600;
margin: 0 0 8px 0;
color: #1a202c;
}
.subtitle {
font-size: 14px;
color: #718096;
margin: 0;
}
.input-group {
margin-bottom: 24px;
}
.input-group input {
width: 100%;
padding: 12px 16px;
font-size: 14px;
border: 2px solid #e2e8f0;
border-radius: 8px;
margin-bottom: 12px;
box-sizing: border-box;
transition: all 0.2s ease;
}
.input-group input:focus {
outline: none;
border-color: #4299e1;
box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.15);
}
.input-group button {
width: 100%;
padding: 12px 24px;
background: #4299e1;
color: white;
border: none;
border-radius: 8px;
font-size: 14px;
font-weight: 600;
cursor: pointer;
transition: all 0.2s ease;
}
.input-group button:hover {
background: #3182ce;
}
.input-group button:disabled {
background: #a0aec0;
cursor: not-allowed;
}
.form-footer {
text-align: center;
font-size: 13px;
}
.form-footer p {
color: #718096;
margin: 0 0 8px 0;
}
.cta-link {
color: #4299e1;
text-decoration: none;
font-weight: 500;
transition: color 0.2s ease;
}
.cta-link:hover {
color: #3182ce;
text-decoration: underline;
}
p#error {
color: #e53e3e;
font-size: 13px;
margin: 0 0 10px 0;
padding: 0;
text-align: left;
}