/* Login page styles */

:root {
    --primary-color: #2563eb;
    --primary-hover: #1d4ed8;
    --background-color: #f8fafc;
    --text-color: #1e293b;
    --border-color: #e2e8f0;
    --error-color: #ef4444;
    --success-color: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Manrope', sans-serif;
    background: var(--background-color);
    color: var(--text-color);
    line-height: 1.5;
    min-height: 100vh;
}

.login-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.login-box {
    background: white;
    border-radius: 12px;
    padding: 2.5rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.05);
}

.logo-placeholder {
    text-align: center;
    margin-bottom: 2rem;
}
.logo-placeholder img {
  height: 168px;
  width: auto;
}
.input-group {
    margin-bottom: 1rem;
}

input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--text-color);
    transition: border-color 0.2s;
}

input::placeholder {
    color: #94a3b8;
}

input:focus {
    outline: none;
    border-color: var(--primary-color);
}

button {
    width: 100%;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 0.5rem;
}

button:hover {
    background: var(--primary-hover);
}

.messages {
    margin-top: 1rem;
}

.message {
    padding: 0.75rem;
    border-radius: 8px;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.message.error {
    background: #fef2f2;
    color: var(--error-color);
}

.message.success {
    background: #f0fdf4;
    color: var(--success-color);
}

@media (max-width: 640px) {
    .login-box {
        margin: 1rem;
        padding: 1.5rem;
    }
} 