/* Login Form Block Styles */
.block-login-form {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem 1rem;
    min-height: 80vh
}

@media (min-width: 768px) {
    .block-login-form {
        min-height: 60vh;
    }
}

.login-form-container {
    width: 100%;
    max-width: 56rem; /* max-w-4xl */
    padding: 2rem;
}

.login-form-title {
    text-align: center;
    font-size: 1.875rem; /* text-3xl */
    font-weight: 800; /* font-extrabold */
    color: #1f2937; /* text-gray-900 */
    margin-bottom: 1rem;
}

.login-form-strapline {
    text-align: center;
    font-size: 1.125rem; /* text-lg */
    color: #4b5563; /* text-gray-600 */
    line-height: 1.6;
    margin-bottom: 2rem;
}

.login-form-strapline p {
    margin: 0 0 1rem 0;
}

.login-form-strapline p:last-child {
    margin-bottom: 0;
}

.login-form-strapline a {
    color: #0ea5e9; /* text-sky-500 */
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.login-form-strapline a:hover {
    color: #0284c7; /* text-sky-600 */
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 600;
    color: #374151; /* text-gray-700 */
    font-size: 1rem;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #d1d5db; /* border-gray-300 */
    border-radius: 0.375rem;
    font-size: 1.125rem; /* text-lg */
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-input:focus {
    outline: none;
    border-color: #3b82f6; /* border-blue-500 */
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-input.password-input {
    font-size: 1.5rem; /* text-2xl */
    padding: 1rem 1.25rem;
}

.form-button {
    width: fit-content;
    padding: 1rem 6rem;
    margin: 0 auto;
    background-color: #0ea5e9; /* bg-sky-500 */
    color: white;
    border: none;
    border-radius: 0.375rem;
    font-size: 1.125rem; /* text-lg */
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.form-button:hover {
    background-color: #0284c7; /* bg-sky-600 */
}

.form-button:active {
    transform: translateY(1px);
}

.form-button:disabled {
    background-color: #9ca3af; /* bg-gray-400 */
    cursor: not-allowed;
    transform: none;
}

.form-error {
    color: #dc2626; /* text-red-600 */
    font-size: 0.875rem;
    margin-top: 0.5rem;
    text-align: center;
}

.form-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.loading-spinner {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .login-form-container {
        padding: 1.5rem;
    }
    
    .login-form-title {
        font-size: 1.5rem; /* text-2xl */
    }
    
    .login-form-strapline {
        font-size: 1rem; /* text-base */
    }
    
    .form-input.password-input {
        font-size: 1.25rem; /* text-xl */
        padding: 0.875rem 1rem;
    }
} 